summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2003-08-29 13:45:02 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2003-08-29 13:45:02 +0000
commit295bf8dfdce0c440370f925cd52969dd0b189092 (patch)
tree6524268cb8ae7c69868b6ae87e3ea0de8b499b59
parentb568dc9f26c94138efff0ff86f57bdf8cbc63789 (diff)
downloadlibapr-295bf8dfdce0c440370f925cd52969dd0b189092.tar.gz
Include apr_temp_dir_get() in OS/2 build.
One of TMP or TEMP will normally be defined on OS/2 so the code's fine as it is. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64598 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--file_io/os2/Makefile.in3
-rw-r--r--file_io/os2/tempdir.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/file_io/os2/Makefile.in b/file_io/os2/Makefile.in
index 33673e014..a87f42423 100644
--- a/file_io/os2/Makefile.in
+++ b/file_io/os2/Makefile.in
@@ -17,7 +17,8 @@ TARGETS = \
filepath_util.lo \
filesys.lo \
mktemp.lo \
- copy.lo
+ copy.lo \
+ tempdir.lo
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
diff --git a/file_io/os2/tempdir.c b/file_io/os2/tempdir.c
new file mode 100644
index 000000000..6823569f2
--- /dev/null
+++ b/file_io/os2/tempdir.c
@@ -0,0 +1 @@
+#include "../unix/tempdir.c"