Apache HTTPD Build Script
It took a bit of time to get LDAP and SSL working correctly...
cd httpd-2.2.20 make distclean ./configure --prefix=/_apps/httpd/install --with-ldap --enable-mods-shared="all ssl ldap cache proxy authn_alias mem_cache file_cache authnz_ldap charset_lite dav_lock disk_cache" # Build APR and APR-util seperatly due to LDAP issues cd srclib cd apr ./configure --prefix=/_apps/httpd/install --enable-threads --enable-other-child make cd .. cd apr-util ./configure --prefix=/_apps/httpd/install --with-apr=../apr --with-ldap=ldap make cd .. cd .. make