diff options
author | Graham Leggett <minfrin@apache.org> | 2003-03-10 13:28:24 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2003-03-10 13:28:24 +0100 |
commit | a0ee2a4adbfdfe9b1d059fdd19b35921bb5c208e (patch) | |
tree | 187b8373e784a907b673abb44af17662bb9fa224 | |
parent | Applying patch from 2.0 branch, however, there still appears to be some (diff) | |
download | apache2-a0ee2a4adbfdfe9b1d059fdd19b35921bb5c208e.tar.xz apache2-a0ee2a4adbfdfe9b1d059fdd19b35921bb5c208e.zip |
Add a note on building the LDAP stuff on AIX
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98957 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/experimental/README.ldap | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/modules/experimental/README.ldap b/modules/experimental/README.ldap index 3ae9f16166..c9445b8153 100644 --- a/modules/experimental/README.ldap +++ b/modules/experimental/README.ldap @@ -1,6 +1,8 @@ Quick installation instructions (UNIX): -- Add generic ldap support and the TWO ldap modules to the build, like this: +- Building on generic Unix: + + Add generic ldap support and the TWO ldap modules to the build, like this: ./configure --with-ldap --enable-ldap --enable-auth-ldap @@ -16,6 +18,19 @@ Quick installation instructions (UNIX): The --enable-auth-ldap option switches on the LDAP authentication module. +- Building on AIX: + + The following ./configure line is reported to work for AIX: + + CC=cc_r; export CC + CPPFLAGS=-qcpluscmt;export CPPFLAGS + ./configure --with-mpm=worker --prefix=/usr/local/apache \ + --enable-dav=static --enable-dav_fs=static --enable-ssl=static + --with-ldap=yes --with-ldap-include=/usr/local/include + --with-ldap-lib=/usr/local/lib --enable-ldap=static + --enable-auth_ldap=static + + Quick installation instructions (win32): 1. copy the file srclib\apr-util\include\apr_ldap.hw to apr_ldap.h |