On Fri, 14 Jun 2002, Zac Hillier wrote: > Can you help? I'm trying to install apache 2.0.36 with mod_ssl and having > real trouble I have re-installed a couple of times now once specifically > with --enable-ssl=shared and once with --enable-shared=all each time the > mod_ssl does not appear to compile into the modules dir and is not present > in any of the conf files?
What does the configure output say around the spot where it says "checking whether to enable mod_ssl"? Chances are, it's not finding your OpenSSL installation (which is a dependency for mod_ssl), and it's therefore skipping mod_ssl. (Hint: use --with-ssl=<path> to tell it where to look.) Now, it's strange that it would do that with --enable-shared=all (=all is supposed to me "fail if you can't find some module's dependencies"), but it's my best guess at the moment. My ./configure script says this there: checking whether to enable mod_ssl... checking dependencies checking for SSL/TLS toolkit base... /usr checking for SSL/TLS toolkit version... checking for SSL/TLS toolkit includes... /usr/include checking for SSL/TLS toolkit libraries... /usr/lib adding "-I/usr/include/openssl" to INCLUDES adding "-lssl" to LIBS adding "-lcrypto" to LIBS checking for SSL_set_state... no checking for SSL_set_cert_store... no checking whether to enable mod_ssl... yes (default) Hope this helps, --Cliff ______________________________________________________________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
