I'm trying to compile apache (httpd-2.2.9) with ssl support on CentOS 4.6.
I run:
# ./configure --prefix=/opt/apache2 --enable-ssl
and I see:
configure: WARNING: Unrecognized options: --enable-ssl
So I figure maybe I would just enable all the modules with this command:
# ./configure --prefix=/opt/apache2 --enable-modules=all
and I see:
configure: WARNING: Unrecognized options: --enable-modules
In order to configure ssl support I had to modify the configure script and make the following change:
if test "${enable_ssl+set}" = set; then
enableval=$enable_ssl
else
enable_ssl=no <----- I change this to enable_ssl=yes
fi
This last one seemed to work because after I run make I find the ./modules/ssl directory which contains, among other files, a file called mod_ssl.c
I think this is what I want, but what am I doing wrong with the original configure commands?
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx
" from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx