diff options
author | Vic Lee <llyzs@163.com> | 2009-11-05 22:35:17 +0800 |
---|---|---|
committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2009-11-10 14:25:29 +0100 |
commit | d3c1d98c2d6223cb154a489492743cfa313d9268 (patch) | |
tree | 0b4a7a80638c6aad8103dba50c0a39f76396d741 | |
parent | a4cc897222b8cbfb621d27c7c9f070dbbb05def9 (diff) | |
download | libvncserver-d3c1d98c2d6223cb154a489492743cfa313d9268.zip libvncserver-d3c1d98c2d6223cb154a489492743cfa313d9268.tar.gz |
Change GnuTLS minimum requirement to 2.4.0
Signed-off-by: Vic Lee <llyzs@163.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7a9b1f7..795b5af 100644 --- a/configure.ac +++ b/configure.ac @@ -689,7 +689,7 @@ AC_ARG_WITH(client-tls, [ --without-client-tls disable support for gnutls in libvncclient],,) if test "x$with_gnutls" != "xno"; then - PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.8.0, , with_client_tls=no) + PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.4.0, , with_client_tls=no) CFLAGS="$CFLAGS $GNUTLS_CFLAGS" LIBS="$LIBS $GNUTLS_LIBS" if test "x$with_client_tls" != "xno"; then |