Originally posted by: dzodzo
Hello, i got the sources from httpd project website and compiled them to fit the system. I had a howto posted on a blog but the site is no longer available. Here from notepad at least some scraps of various configurations, maybe it'll help, basically you just need to read the logs and trace the error messages there.
64-bit apache 2.2
export CFLAGS=-maix64 export OBJECT_MODE=64 ./configure --enable-mods-shared=most --with-mpm=prefork --with-included-apr
apache with ldap support, tricking AIX 6.1 compiler to work as 5.3 because of problems with creating shared modules
./configure --enable-so --enable-cgi --with-included-apr --enable-ldap=shared \ --enable-authnz-ldap=shared --with-ldap-lib=/opt/freeware/lib --with-ldap-include=/opt/freeware \ /include --with-ldap --enable-ssl=shared --with-ssl=/usr --build=powerpc-ibm-aix5.3.0.0 \ --host=powerpc-ibm-aix5.3.0.0 --target=powerpc-ibm-aix5.3.0.0
apache 64-bit reverse proxy balancer with ldap
export CFLAGS=-maix64; export OBJECT_MODE=64; ./configure --with-mpm=prefork --with-included-apr \ --with-ldap --with-ldap-lib=/usr/lib --with-ldap-include=/usr/include --with-ldap --enable-so \ --enable-cgi --enable-ldap=shared --enable-authnz-ldap=shared --enable-ssl=shared --with-ssl=/usr \ --enable-proxy --enable-proxy-connect --enable-proxy-http --enable-proxy-ajp --enable-proxy-balancer \ --cache-file=configure.cache