Commit 35a092fe authored by Fred Drake's avatar Fred Drake

Added detection for getgroups(), fpathconf(), pathconf(),

confstr(), and sysconf().
parent 60429e05
...@@ -269,6 +269,9 @@ ...@@ -269,6 +269,9 @@
/* Define if you have the getpeername function. */ /* Define if you have the getpeername function. */
#undef HAVE_GETPEERNAME #undef HAVE_GETPEERNAME
/* Define if you have the getgroups function. */
#undef HAVE_GETGROUPS
/* Define if you have the getpgrp function. */ /* Define if you have the getpgrp function. */
#undef HAVE_GETPGRP #undef HAVE_GETPGRP
...@@ -284,6 +287,18 @@ ...@@ -284,6 +287,18 @@
/* Define if you have the getwd function. */ /* Define if you have the getwd function. */
#undef HAVE_GETWD #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. */ /* Define if you have the hypot function. */
#undef HAVE_HYPOT #undef HAVE_HYPOT
......
This diff is collapsed.
...@@ -679,12 +679,13 @@ DLINCLDIR=${dldir} ...@@ -679,12 +679,13 @@ DLINCLDIR=${dldir}
LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no)) LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
# checks for library functions # checks for library functions
AC_CHECK_FUNCS(alarm chown clock ctermid ctermid_r dlopen execv flock fork \ AC_CHECK_FUNCS(alarm chown clock confstr ctermid ctermid_r dlopen execv \
fsync fdatasync ftime ftruncate \ flock fork fsync fdatasync fpathconf ftime ftruncate \
getpeername getpgrp getpid getpwent gettimeofday getwd \ getgroups getpeername getpgrp getpid getpwent gettimeofday getwd \
kill link lstat mkfifo mktime nice pause plock pthread_init putenv readlink \ kill link lstat mkfifo mktime nice pathconf pause plock pthread_init \
putenv readlink \
select setgid setlocale setuid setsid setpgid setpgrp setvbuf \ select setgid setlocale setuid setsid setpgid setpgrp setvbuf \
sigaction siginterrupt sigrelse strftime strptime symlink \ sigaction siginterrupt sigrelse strftime strptime symlink sysconf \
tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
truncate uname waitpid) truncate uname waitpid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment