summaryrefslogtreecommitdiff
path: root/devel/py-gobject/patches/patch-configure
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-gobject/patches/patch-configure')
-rw-r--r--devel/py-gobject/patches/patch-configure20
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/py-gobject/patches/patch-configure b/devel/py-gobject/patches/patch-configure
new file mode 100644
index 00000000000..f9986b15d37
--- /dev/null
+++ b/devel/py-gobject/patches/patch-configure
@@ -0,0 +1,20 @@
+$NetBSD: patch-configure,v 1.1 2012/05/14 00:15:28 dholland Exp $
+
+Strengthen a configure test so it doesn't depend on -Werror.
+This is not strictly necessary but makes it behave when using the
+wrappers to manipulate warning flags.
+
+--- configure~ 2011-06-13 16:34:06.000000000 +0000
++++ configure
+@@ -14974,8 +14974,9 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
+ int
+ main ()
+ {
+-PySignal_SetWakeupFd(0);
+- ;
++ int (*func)(int);
++ func = PySignal_SetWakeupFd;
++ func(0);
+ return 0;
+ }
+ _ACEOF