aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2009-08-19 18:41:20 +0000
committerVincent Richard <[email protected]>2009-08-19 18:41:20 +0000
commit93934a40733ceb191fc4f87fdac24a5bb9020bd3 (patch)
tree2dbe2b33d13e20d30db53c19fde567f4869f3020
parentmaildirFolder::addMessage() : iff FLAG_RECENT is present, add message to 'new... (diff)
downloadvmime-93934a40733ceb191fc4f87fdac24a5bb9020bd3.tar.gz
vmime-93934a40733ceb191fc4f87fdac24a5bb9020bd3.zip
Use pkg-config for gnutls 2.8.0 and later (thanks to Andreas Metzler).
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 2a01b614..2e86832c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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)