diff options
author | Vincent Richard <[email protected]> | 2009-08-19 18:41:20 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2009-08-19 18:41:20 +0000 |
commit | 93934a40733ceb191fc4f87fdac24a5bb9020bd3 (patch) | |
tree | 2dbe2b33d13e20d30db53c19fde567f4869f3020 | |
parent | maildirFolder::addMessage() : iff FLAG_RECENT is present, add message to 'new... (diff) | |
download | vmime-93934a40733ceb191fc4f87fdac24a5bb9020bd3.tar.gz vmime-93934a40733ceb191fc4f87fdac24a5bb9020bd3.zip |
Use pkg-config for gnutls 2.8.0 and later (thanks to Andreas Metzler).
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |