diff options
author | espie <espie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-16 12:49:19 +0000 |
---|---|---|
committer | espie <espie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-16 12:49:19 +0000 |
commit | 4c052dfe92af6e672d7bce48fa781821f0ece7fe (patch) | |
tree | 7691a1c643ddb99ba2936589a517ff3aa8d9694d /libstdc++-v3/configure.in | |
parent | 7baa5366a80054035856fbd1dce69ede03e82604 (diff) | |
download | gcc-4c052dfe92af6e672d7bce48fa781821f0ece7fe.tar.gz |
2001-08-16 Marc Espie <espie@openbsd.org>
* configure.in: Check for <sys/types.h>.
* configure: Rebuild.
* config.h.in: Rebuild.
* libmath/mathconf.h: Include <sys/types.h> prior to
<machine/endian.h> if available.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44935 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/configure.in')
-rw-r--r-- | libstdc++-v3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/configure.in b/libstdc++-v3/configure.in index bc91990564f..00bb59f32e5 100644 --- a/libstdc++-v3/configure.in +++ b/libstdc++-v3/configure.in @@ -72,8 +72,8 @@ if test -n "$with_cross_host" || test x"$build" != x"$host"; then # Construct linux crosses by hand, eliminating bits that need ld... # Check for available headers. AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h \ - machine/endian.h machine/param.h sys/machine.h fp.h locale.h \ - float.h inttypes.h]) + machine/endian.h machine/param.h sys/machine.h sys/types.h \ + fp.h locale.h float.h inttypes.h]) # GLIBCPP_CHECK_COMPILER_FEATURES SECTION_FLAGS='-ffunction-sections -fdata-sections' |