This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients belopolsky, flox, l0nwlf, loewis, michael.foord, orsenthil, r.david.murray, ronaldoussoren
Date 2010-06-22.21:46:00
SpamBayes Score 0.0012167953
Marked as misclassified No
Message-id <1277243162.16.0.821874668847.issue7900@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a (untested) work-around that won't require undefining _DARWIN_C_SOURCE: After all includes, say

#ifdef __APPLE__
int	 posix_getgroups(int, gid_t []) __asm("_getgroups");
#define getgroups posix_getgroups
#endif

This should cause linking to the same symbol as without _DARWIN_UNLIMITED_GETGROUPS/_DARWIN_C_SOURCE
History
Date User Action Args
2010-06-22 21:46:02loewissetrecipients: + loewis, ronaldoussoren, belopolsky, orsenthil, r.david.murray, michael.foord, flox, l0nwlf
2010-06-22 21:46:02loewissetmessageid: <1277243162.16.0.821874668847.issue7900@psf.upfronthosting.co.za>
2010-06-22 21:46:00loewislinkissue7900 messages
2010-06-22 21:46:00loewiscreate