Trying to compile from source newest apache with newest openssl
- by AlexMA
I need to install apache 2.4.10 using openssl 1.0.1i. I compiled openssl from source with:
$ ./config \
--prefix=/opt/openssl-1.0.1i \
--openssldir=/opt/openssl-1.0.1i
$ make
$ sudo make install
and Apache with:
./configure --prefix=/etc/apache2 \
--enable-access_compat=shared \
--enable-actions=shared \
…