diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2001-01-23 20:58:23 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2001-01-23 20:58:23 +0000 |
commit | 3637cfac0212232816ca5987bcd75be9f4174c89 (patch) | |
tree | dc7b36cf33011d5636be6dd451d57047105f979b /libstdc++-v3/configure.in | |
parent | 80261b56ed6c7e34fee9cd823b9b1ba3230fb098 (diff) | |
download | gcc-3637cfac0212232816ca5987bcd75be9f4174c89.zip gcc-3637cfac0212232816ca5987bcd75be9f4174c89.tar.gz gcc-3637cfac0212232816ca5987bcd75be9f4174c89.tar.bz2 |
configure.target: Just use os_include_dir always.
2001-01-23 Benjamin Kosnik <bkoz@redhat.com>
* configure.target: Just use os_include_dir always.
* configure.in: Remove calls to GLIBCPP_CHECK_CTYPE_SUPPORT.
Link atomicity files and ctype files here.
* configure: Regenerate.
* acinclude.m4 (GLIBCPP_CHECK_CTYPE_SUPPORT): Remove.
(GLIBCPP_ENABLE_ATOMICITY): Remove.
* aclocal.m4: Regenerate.
From-SVN: r39209
Diffstat (limited to 'libstdc++-v3/configure.in')
-rw-r--r-- | libstdc++-v3/configure.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/libstdc++-v3/configure.in b/libstdc++-v3/configure.in index b751fc3..9a0b3b7 100644 --- a/libstdc++-v3/configure.in +++ b/libstdc++-v3/configure.in @@ -39,7 +39,6 @@ GLIBCPP_ENABLE_C_MBCHAR([yes]) GLIBCPP_ENABLE_LONG_LONG([no]) GLIBCPP_ENABLE_CHEADERS([c_std]) GLIBCPP_ENABLE_THREADS -GLIBCPP_ENABLE_ATOMICITY GLIBCPP_ENABLE_CXX_FLAGS([none]) if test -n "$with_cross_host"; then @@ -144,8 +143,7 @@ if test -n "$with_cross_host"; then GLIBCPP_CHECK_COMPLEX_MATH_SUPPORT GLIBCPP_CHECK_COMPLEX_MATH_COMPILER_SUPPORT GLIBCPP_CHECK_WCHAR_T_SUPPORT - # GLIBCPP_CHECK_CTYPE_SUPPORT - ctype_include_dir="config/os/gnu-linux" + os_include_dir="config/os/gnu-linux" # GLIBCPP_CHECK_STDLIB_SUPPORT AC_DEFINE(HAVE_STRTOF) AC_DEFINE(HAVE_STRTOLD) @@ -161,7 +159,6 @@ if test -n "$with_cross_host"; then AC_DEFINE(HAVE_ISINF) AC_DEFINE(HAVE_ISINFF) - ctype_include_dir="config/os/newlib" os_include_dir="config/os/newlib" AC_DEFINE(_GLIBCPP_BUGGY_FLOAT_COMPLEX) @@ -190,19 +187,19 @@ else GLIBCPP_CHECK_COMPLEX_MATH_SUPPORT GLIBCPP_CHECK_COMPLEX_MATH_COMPILER_SUPPORT GLIBCPP_CHECK_WCHAR_T_SUPPORT - GLIBCPP_CHECK_CTYPE_SUPPORT GLIBCPP_CHECK_STDLIB_SUPPORT AC_FUNC_MMAP fi # Now that ctype is determined for all possible targets, we can do this... -AC_LINK_FILES($ctype_include_dir/bits/ctype_base.h, \ +AC_LINK_FILES($os_include_dir/bits/ctype_base.h, \ include/bits/ctype_base.h) -AC_LINK_FILES($ctype_include_dir/bits/ctype_inline.h, \ +AC_LINK_FILES($os_include_dir/bits/ctype_inline.h, \ include/bits/ctype_inline.h) -AC_LINK_FILES($ctype_include_dir/bits/ctype_noninline.h, \ +AC_LINK_FILES($os_include_dir/bits/ctype_noninline.h, \ include/bits/ctype_noninline.h) +AC_LINK_FILES($ATOMICITYH/bits/atomicity.h, include/bits/atomicity.h) AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes) AM_CONDITIONAL(NATIVE, test "$NATIVE" = yes || test "$NULL_TARGET" = yes) |