diff options
author | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-23 15:21:42 +0000 |
---|---|---|
committer | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-23 15:21:42 +0000 |
commit | fc25a8279fc4b231ee267d3c8539bc170ef99b2c (patch) | |
tree | 6603fad2eac2edc0576eabb8e91e611d93497baa /libcpp | |
parent | fa889fc45c29eb5aadedeb9e5ed6fd800c1824c5 (diff) | |
download | gcc-fc25a8279fc4b231ee267d3c8539bc170ef99b2c.tar.gz |
2009-09-23 Loren J. Rittle <ljrittle@acm.org>
* configure.ac (AC_CHECK_HEADERS after AC_LANG(C++)): Add sys/stat.h.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152081 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 5 | ||||
-rwxr-xr-x | libcpp/configure | 2 | ||||
-rw-r--r-- | libcpp/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index eff8cd4ae27..7a30a8426f9 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2009-09-23 Loren J. Rittle <ljrittle@acm.org> + + * configure.ac (AC_CHECK_HEADERS after AC_LANG(C++)): Add sys/stat.h. + * configure: Rebuilt. + 2009-09-22 Richard Guenther <rguenther@suse.de> PR pch/38987 diff --git a/libcpp/configure b/libcpp/configure index eaf99dd28d6..00cbd7a583d 100755 --- a/libcpp/configure +++ b/libcpp/configure @@ -5127,7 +5127,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu for ac_header in locale.h fcntl.h limits.h stddef.h \ - stdlib.h strings.h string.h sys/file.h unistd.h + stdlib.h strings.h string.h sys/stat.h sys/file.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" diff --git a/libcpp/configure.ac b/libcpp/configure.ac index 52465462165..d520e933c90 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -62,7 +62,7 @@ if test "$ENABLE_BUILD_WITH_CXX" = "no"; then else AC_LANG(C++) AC_CHECK_HEADERS(locale.h fcntl.h limits.h stddef.h \ - stdlib.h strings.h string.h sys/file.h unistd.h) + stdlib.h strings.h string.h sys/stat.h sys/file.h unistd.h) fi # Checks for typedefs, structures, and compiler characteristics. |