diff options
Diffstat (limited to 'source/l/loudmouth/loudmouth.gnutls.configure.ac.diff')
-rw-r--r-- | source/l/loudmouth/loudmouth.gnutls.configure.ac.diff | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/source/l/loudmouth/loudmouth.gnutls.configure.ac.diff b/source/l/loudmouth/loudmouth.gnutls.configure.ac.diff new file mode 100644 index 00000000..6719141f --- /dev/null +++ b/source/l/loudmouth/loudmouth.gnutls.configure.ac.diff @@ -0,0 +1,20 @@ +--- ./configure.ac.orig 2008-10-29 15:23:52.000000000 -0500 ++++ ./configure.ac 2010-04-10 15:42:12.000000000 -0500 +@@ -146,10 +146,13 @@ + enable_ssl=no + if test "x$ac_ssl" = "xgnutls"; then + dnl Look for GnuTLS +- AM_PATH_LM_LIBGNUTLS($GNUTLS_REQUIRED, have_libgnutls=yes, have_libgnutls=no) +- if test "x$have_libgnutls" = "xyes"; then +- CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS" +- LIBS="$LIBS $LIBGNUTLS_LIBS" ++ ++ PKG_CHECK_MODULES(GNUTLS, gnutls >= $GNUTLS_REQUIRED, have_gnutls=yes, have_gnutls=no) ++ if test "x$have_gnutls" = "xyes"; then ++ AC_SUBST(ASYNCNS_CFLAGS) ++ AC_SUBST(ASYNCNS_LIBS) ++ CFLAGS="$CFLAGS $GNUTLS_CFLAGS" ++ LIBS="$LIBS $GNUTLS_LIBS" + AC_DEFINE(HAVE_GNUTLS, 1, [whether to use GnuTSL support.]) + enable_ssl=GnuTLS + else |