Hi Jason,
Here's my version output for OpenSSL and the OS (Ubuntu 8.04):
Next time please do not attempt to sent such log big files to the
mailing list, but just to [email protected] for processing.
The following lines from your config.log indicate you do not have the
OpenSSL header files installed.
configure:30869: result: no
configure:31258: checking validity of the OpenSSL headers in /usr
configure:31323: gcc -c -g -O2 -DOPENSSL_NO_KRB5 conftest.c >&5
conftest.c:128:25: error: openssl/rsa.h: No such file or directory
conftest.c:129:28: error: openssl/crypto.h: No such file or directory
conftest.c:130:26: error: openssl/x509.h: No such file or directory
conftest.c:131:25: error: openssl/pem.h: No such file or directory
conftest.c:132:25: error: openssl/ssl.h: No such file or directory
conftest.c:133:25: error: openssl/err.h: No such file or directory
conftest.c:134:25: error: openssl/bio.h: No such file or directory
conftest.c:135:26: error: openssl/asn1.h: No such file or directory
conftest.c:136:28: error: openssl/pkcs12.h: No such file or directory
conftest.c:137:26: error: openssl/rand.h: No such file or directory
conftest.c: In function 'main':
conftest.c:145: error: 'SSL_METHOD' undeclared (first use in this function)
conftest.c:145: error: (Each undeclared identifier is reported only once
conftest.c:145: error: for each function it appears in.)
conftest.c:145: error: 'ssl_server_method' undeclared (first use in this
function)
conftest.c:146: error: 'SSL_CTX' undeclared (first use in this function)
conftest.c:146: error: 'ssl_server_ctx' undeclared (first use in this
function)
conftest.c:168: error: 'OPENSSL_VERSION_NUMBER' undeclared (first use in
this function)
These header files are part of the libssl-dev package which you can
install on your system using:
sudo apt-get install libssl-dev
That should allow you to restart the configure step.
Patrick