mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
allow --with-libgnutls-prefix and --with-libssl-prefix.
This commit is contained in:
parent
76c651e3a1
commit
f3c2686ef7
@ -1,5 +1,9 @@
|
|||||||
2011-08-11 Giuseppe Scrivano <gscrivano@gnu.org>
|
2011-08-11 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
|
* configure.ac: Allow --with-libgnutls-prefix and
|
||||||
|
--with-libssl-prefix
|
||||||
|
Suggested by: Karl Berry <karl@freefriends.org>
|
||||||
|
|
||||||
* build-aux/bzr-version-gen (TAG): Consider only the last tag.
|
* build-aux/bzr-version-gen (TAG): Consider only the last tag.
|
||||||
|
|
||||||
2011-08-10 Giuseppe Scrivano <gscrivano@gnu.org>
|
2011-08-10 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
46
configure.ac
46
configure.ac
@ -260,27 +260,31 @@ AS_IF([test x"$with_ssl" = xopenssl], [
|
|||||||
else
|
else
|
||||||
LIBS+=' -lgdi32'
|
LIBS+=' -lgdi32'
|
||||||
dnl fallback and test static libs
|
dnl fallback and test static libs
|
||||||
|
|
||||||
AC_CHECK_LIB(crypto, EVP_MD_CTX_init,,,)
|
|
||||||
if test x"$ac_cv_lib_crypto_EVP_MD_CTX_init" != xno
|
|
||||||
then
|
|
||||||
AC_CHECK_LIB(ssl, SSL_connect,, AC_MSG_ERROR([openssl not found]))
|
|
||||||
AC_MSG_NOTICE([Enabling support for SSL via OpenSSL])
|
|
||||||
else
|
|
||||||
AC_MSG_ERROR([openssl not found: shared (eay32/ssl32) or static (crypto/ssl) libs needed])
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
dnl add zdll lib as dep for above tests?
|
dnl add zdll lib as dep for above tests?
|
||||||
;;
|
;;
|
||||||
*)
|
|
||||||
|
|
||||||
AC_CHECK_LIB(crypto, EVP_MD_CTX_init)
|
|
||||||
AC_CHECK_LIB(ssl, ERR_func_error_string,,
|
|
||||||
AC_MSG_ERROR([openssl development libraries not found]))
|
|
||||||
AC_MSG_NOTICE([Enabling support for SSL via OpenSSL (static)])
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
dnl Now actually check for -lssl
|
||||||
|
AC_LIB_HAVE_LINKFLAGS([ssl], [crypto], [
|
||||||
|
#include <openssl/ssl.h>
|
||||||
|
#include <openssl/x509.h>
|
||||||
|
#include <openssl/err.h>
|
||||||
|
#include <openssl/rand.h>
|
||||||
|
#include <openssl/des.h>
|
||||||
|
#include <openssl/md4.h>
|
||||||
|
#include <openssl/md5.h>
|
||||||
|
], [SSL_library_init ()])
|
||||||
|
if test x"$LIBSSL" != x
|
||||||
|
then
|
||||||
|
AC_MSG_NOTICE([compiling in support for SSL via OpenSSL])
|
||||||
|
AC_LIBOBJ([openssl])
|
||||||
|
LIBS="-lopenssl $LIBS"
|
||||||
|
elif test x"$with_ssl" != x
|
||||||
|
then
|
||||||
|
AC_MSG_ERROR([--with-ssl=openssl was given, but SSL is not available.])
|
||||||
|
fi
|
||||||
|
|
||||||
AC_LIBOBJ([openssl])
|
AC_LIBOBJ([openssl])
|
||||||
], [
|
], [
|
||||||
# --with-ssl is not gnutls: check if it's no
|
# --with-ssl is not gnutls: check if it's no
|
||||||
@ -290,12 +294,16 @@ AS_IF([test x"$with_ssl" = xopenssl], [
|
|||||||
AC_CHECK_LIB(z, compress)
|
AC_CHECK_LIB(z, compress)
|
||||||
AC_CHECK_LIB(gpg-error, gpg_err_init)
|
AC_CHECK_LIB(gpg-error, gpg_err_init)
|
||||||
AC_CHECK_LIB(gcrypt, gcry_control)
|
AC_CHECK_LIB(gcrypt, gcry_control)
|
||||||
AC_CHECK_LIB(gnutls, main)
|
|
||||||
|
|
||||||
if test x"$ac_cv_lib_gnutls_main" != xno
|
dnl Now actually check for -lssl
|
||||||
|
AC_LIB_HAVE_LINKFLAGS([gnutls], [], [
|
||||||
|
#include <gnutls/gnutls.h>
|
||||||
|
], [gnutls_global_init()])
|
||||||
|
if test x"$LIBGNUTLS" != x
|
||||||
then
|
then
|
||||||
AC_MSG_NOTICE([compiling in support for SSL via GnuTLS])
|
AC_MSG_NOTICE([compiling in support for SSL via GnuTLS])
|
||||||
AC_LIBOBJ([gnutls])
|
AC_LIBOBJ([gnutls])
|
||||||
|
LIBS="-lgnutls $LIBS"
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([--with-ssl was given, but GNUTLS is not available.])
|
AC_MSG_ERROR([--with-ssl was given, but GNUTLS is not available.])
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user