summaryrefslogtreecommitdiff
path: root/www/zope25/patches
diff options
context:
space:
mode:
authordrochner <drochner>2003-07-25 13:07:08 +0000
committerdrochner <drochner>2003-07-25 13:07:08 +0000
commitbd92050902866c4206e433e93f5689fcd5795267 (patch)
treef2547c43fe3251d2ebf4c1dd0f683badabfc63b8 /www/zope25/patches
parent44814300040af4a0c949843ef3995e2665e7a947 (diff)
downloadpkgsrc-bd92050902866c4206e433e93f5689fcd5795267.tar.gz
Tweak an "#ifdef unix" check to get initgroups(3) support.
Fix from MLH per PR pkg/21697.
Diffstat (limited to 'www/zope25/patches')
-rw-r--r--www/zope25/patches/patch-aa13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/zope25/patches/patch-aa b/www/zope25/patches/patch-aa
new file mode 100644
index 00000000000..33fdc38b739
--- /dev/null
+++ b/www/zope25/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2003/07/25 13:07:08 drochner Exp $
+
+--- lib/Components/initgroups/initgroups.c.orig 2003-07-25 14:52:06.000000000 +0200
++++ lib/Components/initgroups/initgroups.c 2003-07-25 14:53:10.000000000 +0200
+@@ -13,7 +13,7 @@
+
+ #include "Python.h"
+
+-#if defined(__unix__) || defined(unix)
++#if defined(__unix__) || defined(unix) || defined(__NetBSD__)
+
+ #include <grp.h>
+ #include <sys/types.h>