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 /configure.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 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c2d617e..ed8698a 100644 --- a/configure.in +++ b/configure.in @@ -499,7 +499,7 @@ dnl AC_MSG_RESULT($cpp_type) # checks for header files AC_HEADER_STDC -AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h langinfo.h locale.h \ +AC_CHECK_HEADERS(dlfcn.h fcntl.h grp.h limits.h langinfo.h locale.h \ ncurses.h poll.h pthread.h \ signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \ sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \ |