diff options
author | drochner <drochner> | 2003-07-25 13:07:08 +0000 |
---|---|---|
committer | drochner <drochner> | 2003-07-25 13:07:08 +0000 |
commit | bd92050902866c4206e433e93f5689fcd5795267 (patch) | |
tree | f2547c43fe3251d2ebf4c1dd0f683badabfc63b8 /www/zope25/patches | |
parent | 44814300040af4a0c949843ef3995e2665e7a947 (diff) | |
download | pkgsrc-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-aa | 13 |
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> |