On 06/01/10 13:09 -0200, marcelo.xavier@xxxxxxxxxxxx wrote:
----- ./configure --with-openssl=/usr/local/ssl | sed --silent '/evp/,/OpenSSL/p' configure: WARNING: Disabling SASL authentication database support checking openssl/evp.h usability... yes checking openssl/evp.h presence... yes checking for openssl/evp.h... yes checking for EVP_DigestInit in -lcrypto... no checking for OpenSSL... no configure: WARNING: OpenSSL not found -- OTP will be disabled configure: WARNING: OpenSSL not found -- SRP will be disabled configure: WARNING: OpenSSL not found -- NTLM will be disabled configure: WARNING: OpenSSL not found -- PASSDSS will be disabled checking for openssl/evp.h... (cached) yes checking for EVP_DigestInit in -lcrypto... (cached) no checking for OpenSSL... no
Looks like a linking problem. You might try adding your openssl library location to ldconfig, or specifying an LDFLAGS environment variable. E.g.: ~# echo "/usr/local/ssl/lib" > /etc/ld.so.conf.d/openssl.conf ~# ldconfig or LDFLAGS="-L/usr/local/ssl/lib" ./configure --with-openssl=/usr/local/ssl -- Dan White