mod_ssl.so missing
I'm going crazy over this, trying to install Apache 2.0.54 on a Redhat 8.0
machine. Everything works, but the configure script just refuses to create
mod_ssl.so. In the Apache modules directory I see mod_ssl.la and mod_ssl.a,
but just not mod_ssl.so. What do I need to do to get mod_ssl.so created?
Here's what I'm using with configure:
../configure \
"--with-apxs2=/usr/sbin/apxs" \
"--prefix=/etc/httpd" \
"--with-mysql" \
"--enable-track-vars" \
"--enable-debugger" \
"--enable-magic-quotes" \
"--enable-bcmath" \
"--enable-calendar" \
"--enable-ftp" \
"--with-gd" \
"--with-jpeg-dir=/usr/lib" \
"--with-png-dir=/usr/lib" \
"--with-mcrypt" \
"--with-pear" \
"--enable-sockets" \
"--enable-gd-native-ttf" \
"--enable-versioning" \
"--with-zlib" \
"--prefix=/etc/httpd" \
"--exec-prefix=/etc/httpd" \
"--bindir=/usr/bin" \
"--sbindir=/usr/sbin" \
"--sysconfdir=/etc/httpd/conf" \
"--enable-mods-shared=all" \
"--datadir=/var/www" \
"--with-perl=/usr/bin/perl" \
"--enable-ssl" \
"--enable-shared=ssl" \
"--with-ssl=/usr/include/openssl"
|