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/aclocal.m4 | |
parent | 159a26ce5f842a330f5b1002c9c800c820ed85dc (diff) | |
download | gcc-9c111331d62bdb6607f505a4c2d29affe16a7856.tar.gz |
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/aclocal.m4')
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index d78d3a08fe5..5de8abd12c1 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -800,66 +800,6 @@ AC_DEFUN(GLIBCPP_CHECK_TARGET, [ dnl -dnl Check to see what the underlying c library's interface to ctype looks -dnl like. Bits of locale rely on things like isspace, toupper, etc. This -dnl stuff makes sure the right bits from the clibrary get called. -dnl -dnl Depending on what is found, select various configure/*/bits/ctype_base.h -dnl Depending on what is found, select various configure/*/ctype.cc -dnl -dnl GLIBCPP_CHECK_CTYPE_SUPPORT -AC_DEFUN(GLIBCPP_CHECK_CTYPE_SUPPORT, [ - AC_CHECK_HEADER(ctype.h, [ - - dnl If doesn't match any specified, go with defaults. - if test x$ctype_include_dir != x; then - ctype_default=no - else - ctype_default=yes - fi - - dnl Test for <ctype> functionality -- newlib - if test $ctype_default = "yes"; then - AC_MSG_CHECKING([<ctype> for newlib]) - AC_TRY_COMPILE([#include <ctype.h>], - [int - foo (int a) - { return _U + _L + _N + _S + _P + _C + _X + _B \ - + _ctype_[a];}], \ - ctype_newlib=yes, ctype_newlib=no) - AC_MSG_RESULT($ctype_newlib) - if test $ctype_newlib = "yes"; then - ctype_include_dir="config/os/newlib" - ctype_default=no - fi - fi - - dnl Test for <ctype> functionality -- DJGPP - dnl FIXME: this test won't work if __dj_ENFORCE_FUNCTION_CALLS - dnl is defined. - if test $ctype_default = "yes"; then - AC_MSG_CHECKING([<ctype> for DJGPP]) - AC_TRY_COMPILE([#include <ctype.h>], - [int - foo (int a) - { return __dj_ctype_flags[0] + __dj_ctype_flags[1];}], \ - ctype_djgpp=yes, ctype_djgpp=no) - AC_MSG_RESULT($ctype_djgpp) - if test $ctype_djgpp = "yes"; then - ctype_include_dir="config/os/djgpp" - ctype_default=no - fi - fi - - if test $ctype_default = "yes"; then - ctype_include_dir="config/os/generic" - AC_MSG_WARN("Using default ctype headers.") - fi - ]) -]) - - -dnl dnl Check to see if this target can enable the wchar_t parts of libstdc++. dnl If --disable-c-mbchar was given, no wchar_t stuff is enabled. (This dnl must have been previously checked.) @@ -1311,19 +1251,6 @@ AC_DEFUN(GLIBCPP_ENABLE_THREADS, [ ]) -dnl Enable atomic locking -dnl GLIBCPP_ENABLE_ATOMICITY -AC_DEFUN(GLIBCPP_ENABLE_ATOMICITY, [ - AC_MSG_CHECKING([for atomicity.h]) - # We have ATOMICITY already from GLIBCPP_CONFIGURE - if test "$ATOMICITYH" = "config/cpu/generic"; then - AC_MSG_WARN([No ATOMICITY settings found, using generic atomic ops.]) - fi - AC_MSG_RESULT($ATOMICITYH/bits/atomicity.h) - AC_LINK_FILES($ATOMICITYH/bits/atomicity.h, include/bits/atomicity.h) -]) - - dnl dnl Check for template specializations for the 'long long' type extension. dnl |