Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2004-04-14 02:58:50 +0400
committerSebastien Pouliot <sebastien@ximian.com>2004-04-14 02:58:50 +0400
commit04ab333c08c3edeab51aa0117911b7323d700ddd (patch)
treec373a272f024efa11dd048c5c819a79568b63f06 /configure.in
parent0b790edbd338b5bc82af06f221cf766b8ed04189 (diff)
2004-04-13 Sebastien Pouliot <sebastien@ximian.com>
* configure.in: Added rules to check for getgrgid_r, getgrnam_r, getpwnam_r, getpwuid_r, getresuid and setresuid. svn path=/trunk/mono/; revision=25443
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 685e0c04916..caf15b82ea3 100644
--- a/configure.in
+++ b/configure.in
@@ -372,7 +372,13 @@ if test x$platform_win32 = xno; then
AC_SUBST(ikvm_jni_dir)
AC_SUBST(IKVM_JNI_CFLAGS)
+ AC_CHECK_FUNCS(getgrgid_r)
+ AC_CHECK_FUNCS(getgrnam_r)
+ AC_CHECK_FUNCS(getpwnam_r)
AC_CHECK_FUNCS(getpwuid_r)
+ AC_CHECK_FUNCS(getresuid)
+ AC_CHECK_FUNCS(setresuid)
+
dnl ******************************************************************
dnl *** Check for large file support ***
dnl *** (If we were using autoconf 2.50 we'd use AC_SYS_LARGEFILE) ***