Commit a9a59256 authored by Stefan H. Holek's avatar Stefan H. Holek

Collector #1159: Added test for __MACH__ to initgroups.c so the

initgroups method becomes available on Mac OS X.
parent 952a16d0
......@@ -109,6 +109,9 @@ Zope Changes
Bugs fixed
- Collector #1159: Added test for __MACH__ to initgroups.c so the
initgroups method becomes available on Mac OS X.
- Collector #1004: text,token properties were missing in
PropertyManager management page.
......
......@@ -13,7 +13,7 @@
#include "Python.h"
#if defined(__unix__) || defined(unix)
#if defined(__unix__) || defined(unix) || defined(__MACH__) /* Mac OS X */
#include <grp.h>
#include <sys/types.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment