diff options
author | tez <tez@pkgsrc.org> | 2010-02-21 19:32:25 +0000 |
---|---|---|
committer | tez <tez@pkgsrc.org> | 2010-02-21 19:32:25 +0000 |
commit | fec27623be63d464fbe7f150dd39e13302dee9a5 (patch) | |
tree | 3f31060e03ca5ad43bee00a9e4b00f43f6562090 /sysutils | |
parent | 4b2be464b22c0f08faea8b66e8262ef6c789ba27 (diff) | |
download | pkgsrc-fec27623be63d464fbe7f150dd39e13302dee9a5.tar.gz |
fix for pr#42396 from dbus 1.2.16 (different branch than this)
don't pass -no-pointer-sign to compiler that does not support it (gcc34)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/dbus/distinfo | 4 | ||||
-rw-r--r-- | sysutils/dbus/patches/patch-ac | 20 |
2 files changed, 18 insertions, 6 deletions
diff --git a/sysutils/dbus/distinfo b/sysutils/dbus/distinfo index 48f768dd49b..ed58af0cf5a 100644 --- a/sysutils/dbus/distinfo +++ b/sysutils/dbus/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.34 2009/11/23 19:10:46 drochner Exp $ +$NetBSD: distinfo,v 1.35 2010/02/21 19:32:25 tez Exp $ SHA1 (dbus-1.2.4.6permissive.tar.gz) = f71219624885fe2ec1990bb8bdd599e184dd5774 RMD160 (dbus-1.2.4.6permissive.tar.gz) = 05d1c5fae8ae763a9beb8c7d6f390f3ff54e9c30 Size (dbus-1.2.4.6permissive.tar.gz) = 1575270 bytes SHA1 (patch-aa) = fd7cc2e11e15e13885e882e8de51e17af8a63d70 SHA1 (patch-ab) = b2761914edfe2c7666c5412abf79c5d7b87a2006 -SHA1 (patch-ac) = afec419973f339e846dc109866148529f80998b3 +SHA1 (patch-ac) = 63aab0ffac02a9cb85a80e31bbb1234534db378b SHA1 (patch-ag) = 999071b782982c12329025ea8e393bfed940b654 SHA1 (patch-ai) = a45bd8d29955e9c14a4d8b3f44b42242d70c1cd8 SHA1 (patch-ak) = 56c0a917e770b8d6ffc37ec7ab8beb631dd8ef72 diff --git a/sysutils/dbus/patches/patch-ac b/sysutils/dbus/patches/patch-ac index 71533a45902..af7d3cf481d 100644 --- a/sysutils/dbus/patches/patch-ac +++ b/sysutils/dbus/patches/patch-ac @@ -1,8 +1,8 @@ -$NetBSD: patch-ac,v 1.8 2008/06/13 11:28:35 drochner Exp $ +$NetBSD: patch-ac,v 1.9 2010/02/21 19:32:26 tez Exp $ ---- configure.orig 2008-04-04 14:23:44.000000000 -0400 -+++ configure -@@ -5996,6 +5996,224 @@ esac +--- configure.orig 2009-05-06 12:35:38.000000000 -0500 ++++ configure 2009-12-01 13:23:46.338973100 -0600 +@@ -6110,6 +6110,224 @@ need_locks="$enable_libtool_lock" @@ -227,3 +227,15 @@ $NetBSD: patch-ac,v 1.8 2008/06/13 11:28:35 drochner Exp $ # On IRIX 5.3, sys/types and inttypes.h are conflicting. +@@ -20958,7 +21176,10 @@ + esac + case " $CFLAGS " in + *[\ \ ]-Wno-pointer-sign[\ \ ]*) ;; +- *) CFLAGS="$CFLAGS -Wno-pointer-sign" ;; ++ *) if cc_supports_flag -Wno-pointer-sign; then ++ CFLAGS="$CFLAGS -Wno-pointer-sign" ++ fi ++ ;; + esac + + # http://bugs.freedesktop.org/show_bug.cgi?id=19195 |