diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-23 20:58:23 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-23 20:58:23 +0000 |
commit | 9c111331d62bdb6607f505a4c2d29affe16a7856 (patch) | |
tree | dc7b36cf33011d5636be6dd451d57047105f979b /libstdc++-v3/configure.in | |
parent | 159a26ce5f842a330f5b1002c9c800c820ed85dc (diff) | |
download | ppe42-gcc-9c111331d62bdb6607f505a4c2d29affe16a7856.tar.gz ppe42-gcc-9c111331d62bdb6607f505a4c2d29affe16a7856.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39209 138bc75d-0d04-0410-961f-82ee72b054a4
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 b751fc32afb..9a0b3b7fdf9 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) |