diff options
author | Fred Drake <fdrake@acm.org> | 1999-12-13 16:23:35 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-12-13 16:23:35 (GMT) |
commit | 35a092fece45e9fbff725e932437fe3e848c5d95 (patch) | |
tree | 80e23a7bd52bfb53520283bbe3c1e06b26f6c5e6 /config.h.in | |
parent | 60429e055ef92d63347018d239c717d7cc65d174 (diff) | |
download | cpython-35a092fece45e9fbff725e932437fe3e848c5d95.zip cpython-35a092fece45e9fbff725e932437fe3e848c5d95.tar.gz cpython-35a092fece45e9fbff725e932437fe3e848c5d95.tar.bz2 |
Added detection for getgroups(), fpathconf(), pathconf(),
confstr(), and sysconf().
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 919d7fb..a2f9f96 100644 --- a/config.h.in +++ b/config.h.in @@ -269,6 +269,9 @@ /* Define if you have the getpeername function. */ #undef HAVE_GETPEERNAME +/* Define if you have the getgroups function. */ +#undef HAVE_GETGROUPS + /* Define if you have the getpgrp function. */ #undef HAVE_GETPGRP @@ -284,6 +287,18 @@ /* Define if you have the getwd function. */ #undef HAVE_GETWD +/* Define if you have the fpathconf function. */ +#undef HAVE_FPATHCONF + +/* Define if you have the pathconf function. */ +#undef HAVE_PATHCONF + +/* Define if you have the confstr function. */ +#undef HAVE_CONFSTR + +/* Define if you have the sysconf function. */ +#undef HAVE_SYSCONF + /* Define if you have the hypot function. */ #undef HAVE_HYPOT |