From 6fe406c265839de855b35abbad54b3ed63d07ba1 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 4 Sep 2001 17:57:30 +0000 Subject: Only check for OpenSSL if we were not able to find Mozilla's NSS 2001-09-04 Jeffrey Stedfast * configure.in: Only check for OpenSSL if we were not able to find Mozilla's NSS libraries. svn path=/trunk/; revision=12588 --- ChangeLog | 5 +++ configure.in | 122 ++++++++++++++++++++++++++++++----------------------------- 2 files changed, 67 insertions(+), 60 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e4954ca82..2de5fef7a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-09-04 Jeffrey Stedfast + + * configure.in: Only check for OpenSSL if we were not able to find + Mozilla's NSS libraries. + 2001-09-04 Peter Williams * omf-install/Makefile.am (install-data-local): Don't put diff --git a/configure.in b/configure.in index 7f17e18e64..5c6e72ae85 100644 --- a/configure.in +++ b/configure.in @@ -755,14 +755,14 @@ AC_SUBST(KRB4_CFLAGS) AC_SUBST(KRB4_LDFLAGS) -dnl =============================================================================== -dnl = security extension support (SSL and S/MIME) -dnl = -dnl = The following voodoo does detection of mozilla libraries (nspr and nss) -dnl = needed by Camel (SSL) and Evolution (S/MIME). -dnl = -dnl = The Evolution security extensions are only built if these libraries are found -dnl =============================================================================== +dnl ******************************************************************************** +dnl security extension support (SSL and S/MIME) +dnl +dnl The following voodoo does detection of mozilla libraries (nspr and nss) +dnl needed by Camel (SSL and S/MIME). +dnl +dnl The Evolution security extensions are only built if these libraries are found +dnl ******************************************************************************** AC_ARG_WITH(nspr-includes, [ --with-nspr-includes=PREFIX Location of Mozilla nspr4 includes.], with_nspr_includes="$withval", with_nspr_includes="/usr/include/mozilla") have_nspr_includes="no" @@ -883,69 +883,71 @@ AC_SUBST(NSPR_LDFLAGS) AC_SUBST(NSS_CFLAGS) AC_SUBST(NSS_LDFLAGS) -dnl ==================================== -dnl = End mozilla hacks -dnl ==================================== - dnl ****************************** dnl OpenSSL dnl ****************************** -AC_ARG_WITH(openssl-includes, [ --with-openssl-includes=PREFIX Location of OpenSSL includes.], - with_openssl_includes="$withval", with_openssl_includes="/usr/include") -have_openssl_includes="no" -if test "x${with_openssl_includes}" != "xno"; then - CPPFLAGS_save="$CPPFLAGS" +if test "x${msg_nss}" != "xyes"; then + AC_ARG_WITH(openssl-includes, [ --with-openssl-includes=PREFIX Location of OpenSSL includes.], + with_openssl_includes="$withval", with_openssl_includes="/usr/include") + have_openssl_includes="no" + if test "x${with_openssl_includes}" != "xno"; then + CPPFLAGS_save="$CPPFLAGS" + + AC_MSG_CHECKING(for OpenSSL includes) + AC_MSG_RESULT("") + + CPPFLAGS="$CPPFLAGS -I$with_openssl_includes" + AC_CHECK_HEADERS(openssl/ssl.h openssl/x509.h, [ openssl_includes="yes" ]) + CPPFLAGS="$CPPFLAGS_save" + + if test "x{$openssl_includes}" != "xno" -a "x{$openssl_includes}" != "x"; then + have_openssl_includes="yes" + OPENSSL_CFLAGS="-I$with_openssl_includes" + else + OPENSSL_CFLAGS="" + fi + else + AC_MSG_CHECKING(for OpenSSL includes) + AC_MSG_RESULT(no) + fi - AC_MSG_CHECKING(for OpenSSL includes) - AC_MSG_RESULT("") + AC_ARG_WITH(openssl-libs, [ --with-openssl-libs=PREFIX Location of OpenSSL libs.], + with_openssl_libs="$withval") + msg_openssl="no" + if test "x${with_openssl_libs}" != "xno" -a "x${have_openssl_includes}" != "xno"; then + LDFLAGS_save="$LDFLAGS" - CPPFLAGS="$CPPFLAGS -I$with_openssl_includes" - AC_CHECK_HEADERS(openssl/ssl.h openssl/x509.h, [ openssl_includes="yes" ]) - CPPFLAGS="$CPPFLAGS_save" + case $with_openssl_libs in + ""|-L*) ;; + *) $with_openssl_libs="-L$with_openssl_libs" ;; + esac - if test "x{$openssl_includes}" != "xno" -a "x{$openssl_includes}" != "x"; then - have_openssl_includes="yes" - OPENSSL_CFLAGS="-I$with_openssl_includes" - else - OPENSSL_CFLAGS="" - fi -else - AC_MSG_CHECKING(for OpenSSL includes) - AC_MSG_RESULT(no) -fi - -AC_ARG_WITH(openssl-libs, [ --with-openssl-libs=PREFIX Location of OpenSSL libs.], - with_openssl_libs="$withval") -msg_openssl="no" -if test "x${with_openssl_libs}" != "xno" -a "x${have_openssl_includes}" != "xno"; then - LDFLAGS_save="$LDFLAGS" - - case $with_openssl_libs in - ""|-L*) ;; - *) $with_openssl_libs="-L$with_openssl_libs" ;; - esac - - AC_CHECK_LIB(dl, dlopen, DL_LDFLAGS="-ldl", DL_LDFLAGS="") - AC_CACHE_CHECK([for OpenSSL libraries], openssl_libs, - [ - LDFLAGS="$LDFLAGS $with_openssl_libs -lssl -lcrypto $DL_LDFLAGS" - AC_TRY_LINK_FUNC(SSL_read, openssl_libs="yes", openssl_libs="no") - LDFLAGS="$LDFLAGS_save" - ]) - if test "x${openssl_libs}" != "xno"; then - AC_DEFINE(HAVE_OPENSSL) - msg_openssl="yes" - OPENSSL_LDFLAGS="$with_openssl_libs -lssl -lcrypto $DL_LDFLAGS" + AC_CHECK_LIB(dl, dlopen, DL_LDFLAGS="-ldl", DL_LDFLAGS="") + AC_CACHE_CHECK([for OpenSSL libraries], openssl_libs, + [ + LDFLAGS="$LDFLAGS $with_openssl_libs -lssl -lcrypto $DL_LDFLAGS" + AC_TRY_LINK_FUNC(SSL_read, openssl_libs="yes", openssl_libs="no") + LDFLAGS="$LDFLAGS_save" + ]) + if test "x${openssl_libs}" != "xno"; then + AC_DEFINE(HAVE_OPENSSL) + msg_openssl="yes" + OPENSSL_LDFLAGS="$with_openssl_libs -lssl -lcrypto $DL_LDFLAGS" + else + OPENSSL_CFLAGS="" + OPENSSL_LDFLAGS="" + fi else - OPENSSL_CFLAGS="" - OPENSSL_LDFLAGS="" + AC_MSG_CHECKING(for OpenSSL libraries) + AC_MSG_RESULT(no) fi else - AC_MSG_CHECKING(for OpenSSL libraries) - AC_MSG_RESULT(no) + OPENSSL_CFLAGS="" + OPENSSL_LDFLAGS="" + msg_openssl="no" fi - + AC_SUBST(OPENSSL_CFLAGS) AC_SUBST(OPENSSL_LDFLAGS) -- cgit v1.2.3