summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure26
1 files changed, 26 insertions, 0 deletions
diff --git a/configure b/configure
index e0759ab1..d78b791c 100755
--- a/configure
+++ b/configure
@@ -2193,6 +2193,32 @@ else
printf "no\n"
fi
+printf "Checking for {set,get}res{uid,gid} ... "
+
+cat > conftest.c <<!
+#include <sys/types.h>
+#include <unistd.h>
+
+int main(int argc, char **argv)
+{
+ uid_t ur, ue, us;
+ gid_t gr, ge, gs;
+ int gur = getresuid(&ur, &ue, &us);
+ int ggr = getresgid(&gr, &ge, &gs);
+ int sur = setresuid(0, 0, 0);
+ int sgr = setresgid(0, 0, 0);
+ return 0;
+}
+!
+
+if conftest ; then
+ printf "yes\n"
+ printf "#define HAVE_SETRESUID 1\n" >> $config_h
+ have_unistd=y
+else
+ printf "no\n"
+fi
+
printf "Checking for setgroups ... "
cat > conftest.c <<!