Magellan Linux

Contents of /trunk/loudmouth/patches/loudmouth-1.4.3-gnutls28.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 957 - (show annotations) (download)
Fri Dec 25 20:03:32 2009 UTC (14 years, 4 months ago) by niro
File size: 703 byte(s)
loudmouth patches

1 # Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=272027
2 # Patch from mandriva
3 --- a/configure.ac 2009-05-30 17:59:03.000000000 +0200
4 +++ b/configure.ac 2009-05-30 18:02:24.000000000 +0200
5 @@ -146,8 +146,9 @@
6 enable_ssl=no
7 if test "x$ac_ssl" = "xgnutls"; then
8 dnl Look for GnuTLS
9 - AM_PATH_LM_LIBGNUTLS($GNUTLS_REQUIRED, have_libgnutls=yes, have_libgnutls=no)
10 + PKG_CHECK_EXISTS([gnutls >= $GNUTLS_REQUIRED], have_libgnutls=yes, have_libgnutls=no)
11 if test "x$have_libgnutls" = "xyes"; then
12 + PKG_CHECK_MODULES(LIBGNUTLS, [gnutls >= $GNUTLS_REQUIRED])
13 CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"
14 LIBS="$LIBS $LIBGNUTLS_LIBS"
15 AC_DEFINE(HAVE_GNUTLS, 1, [whether to use GnuTSL support.])