summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2002-06-11 10:35:20 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2002-06-11 10:35:20 +0000
commitff53df2323ea30329cd8c80341f9646e53de8593 (patch)
treedef50e4f14f763917d5ccadf535401b4535aa43c /file_io
parent8cac43f51b918851dcb847164a9059b52f3530f8 (diff)
downloadlibapr-ff53df2323ea30329cd8c80341f9646e53de8593.tar.gz
OS/2: Fix build breakage due to missing apr_dir_make_recursive().
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63489 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/os2/dir.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/file_io/os2/dir.c b/file_io/os2/dir.c
index 7c1bfe748..9ccd8c55a 100644
--- a/file_io/os2/dir.c
+++ b/file_io/os2/dir.c
@@ -175,6 +175,14 @@ APR_DECLARE(apr_status_t) apr_dir_make(const char *path, apr_fileperms_t perm, a
+apr_status_t apr_dir_make_recursive(const char *path, apr_fileperms_t perm,
+ apr_pool_t *pool)
+{
+ return APR_ENOTIMPL;
+}
+
+
+
APR_DECLARE(apr_status_t) apr_dir_remove(const char *path, apr_pool_t *pool)
{
return APR_OS2_STATUS(DosDeleteDir(path));