I compiled PHP 4.0.6 under APACHE 1.3.20
with following configuration:
APACHE
./configure --enable-rule=SHARED_CORE --enable-module=most --enable-shared=max \
--sbindir=/usr/sbin --libexecdir=/usr/lib/apache --mandir=/home/httpd/html/manual \
--sysconfdir=/etc/httpd/conf --iconsdir=/home/httpd/icons --htdocsdir=/home/httpd/html \
--cgidir=/home/httpd/cgi-bin --logfiledir=/var/log/httpd
PHP
./configure --with-apxs=/usr/sbin/apxs \
--with-openssl \
--with-mysql --with-gd --enable-track-vars --enable-force-cgi-redirect \
--enable-discard-path --enable-safe-mode --enable-calendar --with-gdbm \
--enable-ftp --with-regex=php --with-gnu-ld --with-oci8 \
--with-imap --with-kerberos
Starting apache I get that libphp4.so cannot find SSL_CTX_set_tmp_rsa_callback. I have both openssl and ssl but not configure on Apache.
I tried to include --enable-openssl in PHP configuration but same problems
Do I have to install openssl or mod_ssl or both?
Giancarlo