diff options
author | Guido van Rossum <guido@python.org> | 2001-10-18 19:44:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-18 19:44:10 (GMT) |
commit | a6535fd40b7220350d007b1dcab3fbccaa6a3092 (patch) | |
tree | 992e41f061e30f32ff1b3620582e8e172e93582e /pyconfig.h.in | |
parent | 91b81c480200761d09a4bb46452959ded8957bd0 (diff) | |
download | cpython-a6535fd40b7220350d007b1dcab3fbccaa6a3092.zip cpython-a6535fd40b7220350d007b1dcab3fbccaa6a3092.tar.gz cpython-a6535fd40b7220350d007b1dcab3fbccaa6a3092.tar.bz2 |
Shut up warnings for setgroups() on Linux -- you have to #include
<grp.h> it seems. This requires yet another configure test.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 8967cc6..fe8d262 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -312,9 +312,6 @@ /* The number of bytes in a wchar_t. */ #undef SIZEOF_WCHAR_T -/* Define if you have the _getpty function. */ -#undef HAVE__GETPTY - /* Define if you have the alarm function. */ #undef HAVE_ALARM @@ -417,6 +414,9 @@ /* Define if you have the getpriority function. */ #undef HAVE_GETPRIORITY +/* Define if you have the _getpty function. */ +#undef HAVE__GETPTY + /* Define if you have the getpwent function. */ #undef HAVE_GETPWENT @@ -591,14 +591,14 @@ /* Define if you have the waitpid function. */ #undef HAVE_WAITPID -/* Define if you have the <db.h> header file. */ -#undef HAVE_DB_H +/* Define if you have the <db_185.h> header file. */ +#undef HAVE_DB_185_H /* Define if you have the <db1/ndbm.h> header file. */ #undef HAVE_DB1_NDBM_H -/* Define if you have the <db_185.h> header file. */ -#undef HAVE_DB_185_H +/* Define if you have the <db.h> header file. */ +#undef HAVE_DB_H /* Define if you have the <dirent.h> header file. */ #undef HAVE_DIRENT_H @@ -612,6 +612,9 @@ /* Define if you have the <gdbm/ndbm.h> header file. */ #undef HAVE_GDBM_NDBM_H +/* Define if you have the <grp.h> header file. */ +#undef HAVE_GRP_H + /* Define if you have the <langinfo.h> header file. */ #undef HAVE_LANGINFO_H |