On 10/22/07, Walter Barnes <[EMAIL PROTECTED]> wrote: > Hello, I posted this a few days ago but it may have been overlooked so I'm > reposting. My apologies if I'm being rude; however, I cannot get my dial-up > internet working without this :-( Thanks. > > From: Walter Barnes <[EMAIL PROTECTED]> > Hello > > When building the wvstreams package the configure script fails with the > message that I need openssl >= 0.9.7; however, I have already installed > 0.9.8d following the instructions in BLFS. > > I examined the log and the configure script and found that the test for > "SSL_has_matching_session_id in -lssl" is failing and this causes with_ssl to > be set to "no". It appears to be generating a test file which it builds and > executes for this test. > > Here is the test file it generates: > > #line $LINENO "configure" > #include "confdefs.h" > /* Override any gcc2 internal prototype to avoid an error. */ > #ifdef __cplusplus > extern "C" > #endif > /* We use char because int might match the return type of a gcc2 > builtin and then its argument prototype would still apply. */ > char SSL_has_matching_session_id (); > #ifdef F77_DUMMY_MAIN > # ifdef __cplusplus > extern "C" > # endif > int F77_DUMMY_MAIN() { return 1; } > #endif > int > main () > { > SSL_has_matching_session_id (); > ; > return 0; > } > > Any ideas as to what is causing this to fail? Do I need to recompile openssl > with a different set of configure options?
One thought is that the script is failing because of a new compiler. Check to see if SSL_has_matching_session_id is indeed available with: nm /usr/lib/libssl.so|grep match If it is in your library (it is in openssl-0.9.8d), then the configure script is broken. wvstreams has not been updated in at least two years. Edit the configure script to ingore this test. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page