From 119e3e9e7789cffdfa6a4dcc9a1c206294fcc6cd Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Fri, 10 Dec 1999 16:10:42 +0000 Subject: [PATCH] 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 --- os/unix/os.h | 5 ++++- support/httpd.exp | 2 +- 2 files changed, 5 insertions(+), 2 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 diff --git a/support/httpd.exp b/support/httpd.exp index a845d0d413..b6976c210d 100644 --- a/support/httpd.exp +++ b/support/httpd.exp @@ -1,4 +1,4 @@ -#! +#! . ap_MD5Encode ap_MD5Final ap_MD5Init -- 2.50.1