diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-05-08 04:35:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-08 04:35:07 +0800 |
commit | d0c769d2858752be8c11432ebd2d4678dd845edc (patch) | |
tree | c653250a41b7e3798b3c5b7733752d245c7cf0b6 /configure.in | |
parent | 416d8fa6cd84e6b25886c1c2fcbf2b0dbce58b7f (diff) | |
download | gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.tar gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.tar.gz gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.tar.bz2 gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.tar.lz gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.tar.xz gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.tar.zst gsoc2013-evolution-d0c769d2858752be8c11432ebd2d4678dd845edc.zip |
undef HAVE_SSL and HAVE_OPENSSL
2001-05-04 Jeffrey Stedfast <fejj@ximian.com>
* acconfig.h: undef HAVE_SSL and HAVE_OPENSSL
* configure.in: Check for OpenSSL.
svn path=/trunk/; revision=9698
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 71 |
1 files changed, 69 insertions, 2 deletions
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 |