diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-08-31 00:50:36 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-08-31 00:50:36 +0000 |
commit | 4ac3cb830a7e22e721face7118cdbefdd0515a1e (patch) | |
tree | a1e4c9bfa7ee3e601f8a9bb78fe7b268f30e707b /libiberty/configure.in | |
parent | 00d30284b84eedd162ed081fe008c459dc7c98e3 (diff) | |
download | gcc-4ac3cb830a7e22e721face7118cdbefdd0515a1e.tar.gz |
Makefile.in (CFILES): Add calloc.c and getpwd.c.
* Makefile.in (CFILES): Add calloc.c and getpwd.c.
(REQUIRED_OFILES): Add getpwd.o.
(getpwd.o): Add target.
* configure.in (AC_PREREQ): Bump to 2.13.
(AC_CHECK_HEADERS): Add check for <sys/stat.h>.
* getpwd.c: New file, moved here from gcc.
From-SVN: r28996
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 843a9dd94e9..10b8294198b 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script -AC_PREREQ(2.12.1) +AC_PREREQ(2.13) AC_INIT(pexecute.c) dnl We use these options to decide which functions to include. @@ -106,7 +106,7 @@ AC_SUBST_FILE(host_makefile_frag) # It's OK to check for header files. Although the compiler may not be # able to link anything, it had better be able to at least compile # something. -AC_CHECK_HEADERS(sys/file.h sys/param.h stdlib.h string.h unistd.h strings.h sys/time.h sys/resource.h) +AC_CHECK_HEADERS(sys/file.h sys/param.h stdlib.h string.h unistd.h strings.h sys/time.h sys/resource.h sys/stat.h) AC_HEADER_SYS_WAIT # This is the list of functions which libiberty will provide if they |