From d0c769d2858752be8c11432ebd2d4678dd845edc Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 7 May 2001 20:35:07 +0000 Subject: undef HAVE_SSL and HAVE_OPENSSL 2001-05-04 Jeffrey Stedfast * acconfig.h: undef HAVE_SSL and HAVE_OPENSSL * configure.in: Check for OpenSSL. svn path=/trunk/; revision=9698 --- ChangeLog | 6 +++++ acconfig.h | 2 ++ configure.in | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 77 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c822aba23c..3069e5b3a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-05-04 Jeffrey Stedfast + + * acconfig.h: undef HAVE_SSL and HAVE_OPENSSL + + * configure.in: Check for OpenSSL. + 2001-05-05 Gediminas Paulauskas * configure.in: upped required gtkhtml version to 0.9.3, even that is diff --git a/acconfig.h b/acconfig.h index 1bb33c8042..4b6a2c2d6f 100644 --- a/acconfig.h +++ b/acconfig.h @@ -16,6 +16,8 @@ #undef NEED_KRB_SENDAUTH_PROTO #undef HAVE_KRB5 #undef HAVE_NSS +#undef HAVE_SSL +#undef HAVE_OPENSSL #undef MOVEMAIL_PATH #undef USE_DOT #undef USE_FCNTL diff --git a/configure.in b/configure.in index 2516956a60..bc36fe7627 100644 --- a/configure.in +++ b/configure.in @@ -597,7 +597,7 @@ else AC_MSG_RESULT(no) fi -AC_ARG_WITH(nss-libs, [ --with-nss-libs=PREFIX Location of Mozilla nss3 libs/includes.], +AC_ARG_WITH(nss-libs, [ --with-nss-libs=PREFIX Location of Mozilla nss3 libs.], with_nss_libs="$withval") msg_nss="no" if test "x${with_nss_libs}" != "xno" -a "x${have_nss_includes}" != "xno"; then @@ -634,6 +634,72 @@ 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" + + 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_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" + + AC_CACHE_CHECK([for OpenSSL libraries], openssl_libs, + [ + LDFLAGS="$LDFLAGS -L$with_openssl_libs -lssl -lcrypto" + 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="-L$with_openssl_libs -lssl -lcrypto" + else + OPENSSL_CFLAGS="" + OPENSSL_LDFLAGS="" + fi +else + AC_MSG_CHECKING(for OpenSSL libraries) + AC_MSG_RESULT(no) +fi + +AC_SUBST(OPENSSL_CFLAGS) +AC_SUBST(OPENSSL_LDFLAGS) + +dnl ****************************** +dnl See if we have SSL support +dnl ****************************** + +if test "x${msg_nss}" != "xno" -o "x${msg_openssl}" != "xno"; then + msg_ssl="yes" + AC_DEFINE(HAVE_SSL) +else + msg_ssl="no" +fi dnl ****************************** dnl gtk-doc @@ -822,7 +888,8 @@ echo " NNTP support: $msg_nntp Pilot conduits: $msg_pilot Kerberos 4/5: $msg_krb4/$msg_krb5 - SSL support: $msg_nss + SSL support: $msg_ssl + S/MIME support: $msg_nss Use movemail: $with_movemail Dot Locking: $msg_dot File Locking: $msg_file -- cgit v1.2.3