diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-17 09:23:16 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-17 09:23:16 +0000 |
commit | 2382c34146f4f2f0d491becf015bd3eaef1d5557 (patch) | |
tree | 33a0579f3bcf5453db31c5c65a0320a104fbbd28 /gcc/config.in | |
parent | 748242f27af76e5a41e95a45be1ae0954980aaf7 (diff) | |
download | gcc-2382c34146f4f2f0d491becf015bd3eaef1d5557.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35086 138bc75d-0d04-0410-961f-82ee72b054a4
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 582f93b2f5a..d07e292a620 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 |