summaryrefslogtreecommitdiffstats
path: root/os/unix/os.h
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>1999-12-10 17:10:42 +0100
committerBill Stoddard <stoddard@apache.org>1999-12-10 17:10:42 +0100
commit119e3e9e7789cffdfa6a4dcc9a1c206294fcc6cd (patch)
treebd403f01d0250394fcc3ee9a2fb2e77fc888728d /os/unix/os.h
parent Add a note about DNS being required on Windows. (diff)
downloadapache2-119e3e9e7789cffdfa6a4dcc9a1c206294fcc6cd.tar.xz
apache2-119e3e9e7789cffdfa6a4dcc9a1c206294fcc6cd.zip
AIX DSO tweaks. Enable use of native DSO for AIX 4.3 and beyond. Apache DSO
emulation breaks with 64-bit compiles of Apache and AIX DSO support is broken in releases prior to 4.3. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/unix/os.h')
-rw-r--r--os/unix/os.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/os/unix/os.h b/os/unix/os.h
index 6689dfae5c..b11394e458 100644
--- a/os/unix/os.h
+++ b/os/unix/os.h
@@ -104,11 +104,14 @@ extern int ap_os_is_path_absolute(const char *file);
#endif
/*
- * Do not use native AIX DSO support
+ * Do not use native AIX DSO support on releases of AIX prior
+ * to V4.3
*/
#ifdef AIX
+#if AIX < 43
#undef HAVE_DLFCN_H
#endif
+#endif
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>