* configure.ac: The function getgrouplist() is not used anymore,

so there is no need to check for it.
This commit is contained in:
Roland Illig 2005-08-15 20:59:13 +00:00
parent f9df117df1
commit 2b6d96d72d
2 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-08-15 Roland Illig <roland.illig@gmx.de>
* configure.ac: The function getgrouplist() is not used anymore,
so there is no need to check for it.
2005-07-20 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Restore support for opening 7-zip archives.

View File

@ -175,9 +175,16 @@ dnl
dnl Check availability of some functions
dnl
AC_CHECK_FUNCS([atoll cfgetospeed getsid initgroups memcpy memmove memset \
putenv setreuid setuid statfs strerror strftime \
sysconf tcgetattr tcsetattr truncate getgrouplist])
AC_CHECK_FUNCS([\
atoll \
cfgetospeed \
getsid \
initgroups \
memcpy memmove memset \
putenv \
setreuid setuid statfs strerror strftime sysconf \
tcgetattr tcsetattr truncate \
])
dnl S-Lang needs all four functions to be defined to use POSIX signal API
AC_CHECK_FUNCS([sigaction sigemptyset sigprocmask sigaddset], , [slang_signals=no])