diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-10-13 22:59:40 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-10-13 16:59:40 -0600 |
commit | 73aeb2ff9b05da69dd92ad674608df424252593c (patch) | |
tree | 7383fe93eb4c73695e4a18dc994d58d7df6b3456 /libiberty/configure.in | |
parent | f096ce6675c52621eb6b9a7f802129de3c02f8b2 (diff) | |
download | gcc-73aeb2ff9b05da69dd92ad674608df424252593c.zip gcc-73aeb2ff9b05da69dd92ad674608df424252593c.tar.gz gcc-73aeb2ff9b05da69dd92ad674608df424252593c.tar.bz2 |
getopt.c: Check HAVE_STRINGS_H before including strings.h.
* getopt.c: Check HAVE_STRINGS_H before including strings.h.
* configure.in (AC_CHECK_HEADERS): Check for strings.h too.
* config.in, configure: Rebuilt.
From-SVN: r23065
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 5ce8b60..57b9071 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -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) +AC_CHECK_HEADERS(sys/file.h sys/param.h stdlib.h string.h unistd.h strings.h) # This is the list of functions which libiberty will provide if they # are not available on the host. |