aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-03-21 22:52:03 +0000
committerGerald Combs <gerald@wireshark.org>2012-03-21 22:52:03 +0000
commit604896658e902e4c85357b2eebd74422256b4d27 (patch)
tree45426b2b6ce4af65d976a8922deac03ac52eb4fd /configure.in
parent1731fc958e6a34dac1297d4a7f45c6bc9d18bb92 (diff)
Don't use GNUTLS 3.0, at least until we determine the impact of their
license change. svn path=/trunk/; revision=41728
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6c2bb5a810..ec196fdc5b 100644
--- a/configure.in
+++ b/configure.in
@@ -178,13 +178,14 @@ AM_CONDITIONAL(HAVE_DOXYGEN, test x$HAVE_DOXYGEN = xyes)
AC_SYS_LARGEFILE
# GnuTLS
+# Version 3.0 switched from LGPLv2.1+ to LGPLv3+.
tls_message="no"
AC_ARG_WITH([gnutls],
AC_HELP_STRING( [--with-gnutls=@<:@yes/no@:>@],
[use GnuTLS library @<:@default=yes@:>@]),
with_gnutls="$withval", with_gnutls="yes")
if test "x$with_gnutls" = "xyes"; then
- PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 1.2.0],
+ PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 1.2.0 gnutls < 3],
[
echo "GnuTLS found, enabling SSL decryption"
AC_DEFINE(HAVE_LIBGNUTLS, 1, [Define to use GnuTLS library])