diff options
author | J. David Anglin <dave@hiauly1.hia.nrc.ca> | 2000-07-17 09:23:16 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-07-17 03:23:16 -0600 |
commit | e256b8b6ec617f79556073d1e563dc5bc4d1807b (patch) | |
tree | 33a0579f3bcf5453db31c5c65a0320a104fbbd28 /gcc/config.in | |
parent | 69ff85f30cfa97a0f5e4c022294af24e444fb415 (diff) | |
download | gcc-e256b8b6ec617f79556073d1e563dc5bc4d1807b.zip gcc-e256b8b6ec617f79556073d1e563dc5bc4d1807b.tar.gz gcc-e256b8b6ec617f79556073d1e563dc5bc4d1807b.tar.bz2 |
Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
* Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
* configure.in (TARGET_GETGROUPS_T): Evaluate.
* sys-protos.h (getgroups): Use TARGET_GETGROUPS_T for array type
of second argument of getgroups.
* configure, config.in: Rebuilt.
From-SVN: r35086
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 582f93b..d07e292 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -10,6 +10,13 @@ This function is required for alloca.c support on those systems. */ #undef CRAY_STACKSEG_END +/* Define to the type of elements in the array set by `getgroups'. + Usually this is either `int' or `gid_t'. */ +#undef GETGROUPS_T + +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef gid_t + /* Define if you have alloca, as a function or macro. */ #undef HAVE_ALLOCA @@ -64,6 +71,9 @@ /* Define if you can safely include both <sys/time.h> and <time.h>. */ #undef TIME_WITH_SYS_TIME +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef uid_t + /* Define vfork as fork if vfork does not work. */ #undef vfork |