diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-12-02 20:37:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-12-02 20:37:54 (GMT) |
commit | 30b3b35cbac52719e44d8457fd9a7be09e6edd2c (patch) | |
tree | 595a8572a948775e3dcb4017fa13240dd5baf251 /pyconfig.h.in | |
parent | f2bf0d2a51f305f7df9d6199f580b488f1aa5135 (diff) | |
download | cpython-30b3b35cbac52719e44d8457fd9a7be09e6edd2c.zip cpython-30b3b35cbac52719e44d8457fd9a7be09e6edd2c.tar.gz cpython-30b3b35cbac52719e44d8457fd9a7be09e6edd2c.tar.bz2 |
Issue #7333: The `posix` module gains an `initgroups()` function providing
access to the initgroups(3) C library call on Unix systems which implement
it. Patch by Jean-Paul Calderone.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 7541213..fd58443 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -301,6 +301,9 @@ /* Define to 1 if you have the `getpeername' function. */ #undef HAVE_GETPEERNAME +/* Define to 1 if you have the `initgroups' function. */ +#undef HAVE_INITGROUPS + /* Define to 1 if you have the `getpgid' function. */ #undef HAVE_GETPGID |