diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-12-02 20:46:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-12-02 20:46:48 (GMT) |
commit | b7572f08f48c4b29c137c7b62f10be9436b6efa3 (patch) | |
tree | 326485f0f49c4ab74c9d70c9a205c1dd5853c742 /pyconfig.h.in | |
parent | 8a10ecc051b0932a8386050675862e98db5a5691 (diff) | |
download | cpython-b7572f08f48c4b29c137c7b62f10be9436b6efa3.zip cpython-b7572f08f48c4b29c137c7b62f10be9436b6efa3.tar.gz cpython-b7572f08f48c4b29c137c7b62f10be9436b6efa3.tar.bz2 |
Merged revisions 76636 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76636 | antoine.pitrou | 2009-12-02 21:37:54 +0100 (mer., 02 déc. 2009) | 5 lines
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 e9c930c..c9225a2 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -299,6 +299,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 |