diff options
author | joerg <joerg@pkgsrc.org> | 2006-02-11 14:11:07 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-02-11 14:11:07 +0000 |
commit | 3d8b53f8564b492439658808f39a38dae6ad5c24 (patch) | |
tree | c17d5a64a716fbe60d28c7c66e2aefc01edaaa6b /security/gpgme/patches | |
parent | 7face5cc6642128f0d5bbf6b482b2429b4dea270 (diff) | |
download | pkgsrc-3d8b53f8564b492439658808f39a38dae6ad5c24.tar.gz |
Don't hard-wire -lpthread into gpgme-config, it breaks e.g. mail/balsa2
on DragonFly. Bump revision.
Diffstat (limited to 'security/gpgme/patches')
-rw-r--r-- | security/gpgme/patches/patch-aa | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/security/gpgme/patches/patch-aa b/security/gpgme/patches/patch-aa index 5256a30eb58..32e0b976f5e 100644 --- a/security/gpgme/patches/patch-aa +++ b/security/gpgme/patches/patch-aa @@ -1,8 +1,19 @@ -$NetBSD: patch-aa,v 1.5 2004/08/22 17:52:26 recht Exp $ +$NetBSD: patch-aa,v 1.6 2006/02/11 14:11:07 joerg Exp $ --- gpgme/gpgme-config.in.orig 2004-05-21 21:49:29.000000000 +0200 +++ gpgme/gpgme-config.in 2004-08-22 17:25:14.000000000 +0200 -@@ -98,7 +98,7 @@ +@@ -26,8 +26,8 @@ libs_pth="@PTH_LDFLAGS@ @PTH_LIBS@" + cflags_pth="@PTH_CFLAGS@" + + @HAVE_PTHREAD_TRUE@thread_modules="$thread_modules pthread" +-libs_pthread="-lpthread" +-cflags_pthread="" ++libs_pthread="@PTHREAD_LIBS@" ++cflags_pthread="@PTHREAD_CFLAGS@" + + output="" + +@@ -98,7 +98,7 @@ while test $# -gt 0; do ;; --libs) if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then |