Lines 1734-1739
if test "$OPENSSL_ENABLED" != "1"; then
Link Here
|
1734 |
|
1734 |
|
1735 |
fi dnl OPENSSL != 1 |
1735 |
fi dnl OPENSSL != 1 |
1736 |
|
1736 |
|
|
|
1737 |
dnl --- |
1738 |
dnl If GnuTLS is enabled, we MUST verify that it uses libgcrypt since |
1739 |
dnl curl code relies on that but recent GnuTLS versions can in fact build |
1740 |
dnl with different crypto libraries which curl right now cannot handle |
1741 |
dnl --- |
1742 |
|
1743 |
if test "$GNUTLS_ENABLED" = "1"; then |
1744 |
AC_CHECK_LIB(gcrypt, |
1745 |
gcry_control, , |
1746 |
[ |
1747 |
AC_MSG_ERROR([need GnuTLS built with gcrypt to function with GnuTLS]) |
1748 |
]) |
1749 |
fi |
1750 |
|
1737 |
dnl ---------------------------------------------------- |
1751 |
dnl ---------------------------------------------------- |
1738 |
dnl check for PolarSSL |
1752 |
dnl check for PolarSSL |
1739 |
dnl ---------------------------------------------------- |
1753 |
dnl ---------------------------------------------------- |
1740 |
- |
|
|