summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>1998-08-24 19:30:06 +0000
committerMartin Baulig <martin@src.gnome.org>1998-08-24 19:30:06 +0000
commitf7eca1be068cdadcd38c1867e64090b58dc073d5 (patch)
tree40c9d7c4e566e47c9c684198bfe7d8d31727bc08
parent992685c610241270a866298194d5564f85163213 (diff)
downloadgnome-common-f7eca1be068cdadcd38c1867e64090b58dc073d5.tar.gz
Added `setreuid', `setregid' and `getpagesize'. (AC_TYPE_UID_T): New
1998-08-24 Martin Baulig <martin@home-of-linux.org> * gnome-support.m4 (GCC_NEED_DECLARATIONS): Added `setreuid', `setregid' and `getpagesize'. (AC_TYPE_UID_T): New check. svn path=/trunk/; revision=348
-rw-r--r--macros/ChangeLog6
-rw-r--r--macros/gnome-support.m45
2 files changed, 10 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 9442d9d..93d0587 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,9 @@
+1998-08-24 Martin Baulig <martin@home-of-linux.org>
+
+ * gnome-support.m4 (GCC_NEED_DECLARATIONS): Added `setreuid',
+ `setregid' and `getpagesize'.
+ (AC_TYPE_UID_T): New check.
+
1998-08-24 Christopher Blizzard <blizzard@appliedtheory.com>
* Makefile.am (MACROS): Add gnome-ghttp-check.m4 to the Makefile.
diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4
index c16b689..c0a1163 100644
--- a/macros/gnome-support.m4
+++ b/macros/gnome-support.m4
@@ -85,10 +85,13 @@ AC_DEFUN([GNOME_SUPPORT_CHECKS],[
AC_CHECK_FUNCS(vprintf doprnt sterror_r)
AM_FUNC_ERROR_AT_LINE
+ # This is required if we declare setreuid () and setregid ().
+ AC_TYPE_UID_T
+
# see if we need to declare some functions. Solaris is notorious for
# putting functions into the `libc' but not listing them in the headers
AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h)
- GCC_NEED_DECLARATIONS(gethostname)
+ GCC_NEED_DECLARATIONS(gethostname setreuid setregid getpagesize)
if test "$LIBOBJS$gcc_need_declarations" != ""; then
need_gnome_support=yes