Hi all
Can anyone shed any light on why this is failing:
I've just successfully installed apache with openssl & mod_ssl, this is all working fine. I've also successfully installed php5 but I need to rebuild php with the openssl option (to connect to LDAPS servers). The following is how I installed openssl:
cd /tmp
tar zxvf openssl-0.9.7d.tar.gz
cd openssl-0.9.7d
./config
make
and I'm trying to build PHP with the following options:
./configure --with-apxs=/usr/local/apachessl/bin/apxs --with-openssl=/tmp/openssl-0.9.7d --with-ldap
but it complains with:
configure: error: Cannot find OpenSSL's <evp.h>
which directory am I supposed to point --with-openssl at? which openssl gives me /usr/bin/openssl, locate evp.h gives me /tmp/openssl-0.9.7d/crypto/evp/evp.h & /tmp/openssl-0.9.7d/include/openssl/evp.h
I've tried almost all possible locations in this path but can't get past it
any advice or help appreciated
cheers, Rob