31 lines
891 B
Diff
31 lines
891 B
Diff
|
diff --git a/configure.ac b/configure.ac
|
||
|
index 58347d8..8c7fca2 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -77,15 +77,10 @@ AC_TYPE_UINT64_T
|
||
|
|
||
|
dnl AC_TYPE_GETGROUPS seems broken on recent MacOS, so:
|
||
|
AC_MSG_CHECKING([Figure out if getgrouplist() needs gid_t or int])
|
||
|
-oldcflags="$CFLAGS"
|
||
|
-export CFLAGS=-Werror
|
||
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||
|
#include <unistd.h>
|
||
|
-#include <grp.h>
|
||
|
- ]], [[
|
||
|
-gid_t groups[32]; int ngroups; const char* user = "root";
|
||
|
-getgrouplist(user, 1, groups, &ngroups);
|
||
|
- ]])],[
|
||
|
+int getgroups(int gidsetsize, gid_t grouplist[]);
|
||
|
+ ]], [[ ]])],[
|
||
|
AC_MSG_RESULT(gid_t)
|
||
|
AC_DEFINE(GETGROUPS_T,[gid_t])
|
||
|
],[
|
||
|
@@ -93,7 +88,6 @@ getgrouplist(user, 1, groups, &ngroups);
|
||
|
AC_DEFINE(GETGROUPS_T,[int])
|
||
|
]
|
||
|
)
|
||
|
-export CFLAGS="$oldcflags"
|
||
|
|
||
|
dnl Checks for library functions.
|
||
|
AC_CHECK_FUNCS(gethostname gettimeofday mkfifo select socket strdup \
|