Use pkg-config for gnutls 2.8.0 and later (thanks to Andreas Metzler).

This commit is contained in:
Vincent Richard 2009-08-19 18:41:20 +00:00
parent 6bfaff3ce4
commit 93934a4073

View File

@ -1617,7 +1617,7 @@ AC_ARG_ENABLE(tls,
if test "x$conf_tls" = "xyes"; then
# -- GNU TLS Library (http://www.gnu.org/software/gnutls/)
AM_PATH_LIBGNUTLS(1.2.0, have_gnutls=yes, have_gnutls=no)
PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 1.2.0], have_gnutls=yes, have_gnutls=no)
if test "x$have_gnutls" = "xyes"; then
AM_CONDITIONAL(VMIME_HAVE_TLS_SUPPORT, true)