diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2001-11-02 22:31:03 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2001-11-02 22:31:03 +0000 |
commit | 222485455e90e11b99912d1345394956b8f178c9 (patch) | |
tree | 8c731ebbdfd5e94f77b13396db1b670dbbc9432a /libstdc++-v3/aclocal.m4 | |
parent | bafe341a4fa148de96ed187c17fd6ff43d8dce1c (diff) | |
download | gcc-222485455e90e11b99912d1345394956b8f178c9.tar.gz |
acconfig.h: Update comments.
2001-11-02 Phil Edwards <pme@gcc.gnu.org>
* acconfig.h: Update comments.
* acinclude.m4 (GLIBCPP_ENABLE_C99): Move strtoll, strtoull tests...
(GLIBCPP_ENABLE_LONG_LONG): ...to here. Don't check enable_c99.
* aclocal.m4: Regenerate.
* config.h.in: Regenerate.
* configure: Regenerate.
* include/bits/boost_concept_check.h: Unconditionally compile uses
of 'long long' which require only compiler support, not C lib support.
* include/bits/cpp_type_traits.h: Likewise.
* include/bits/std_limits.h: Likewise.
* include/bits/type_traits.h: Likewise.
* src/concept-inst.cc: Likewise.
* src/limits.cc: Likewise.
* include/c_shadow/stdlib.h: Compile conditionally on _GLIBCPP_USE_C99
instead of _GLIBCPP_USE_LONG_LONG.
* include/c_shadow/bits/std_cstdlib.h: Likewise.
From-SVN: r46723
Diffstat (limited to 'libstdc++-v3/aclocal.m4')
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 8209b3c2016..1a52ee85eff 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -1445,10 +1445,6 @@ AC_DEFUN(GLIBCPP_ENABLE_C99, [dnl [char* tmp; strtof("gnu", &tmp);],, [ac_c99_stdlib=no]) AC_TRY_COMPILE([#include <stdlib.h>], [char* tmp; strtold("gnu", &tmp);],, [ac_c99_stdlib=no]) - AC_TRY_COMPILE([#include <stdlib.h>], - [char* tmp; strtoll("gnu", &tmp, 10);],, [ac_c99_stdlib=no]) - AC_TRY_COMPILE([#include <stdlib.h>], - [char* tmp; strtoull("gnu", &tmp, 10);],, [ac_c99_stdlib=no]) AC_TRY_COMPILE([#include <stdlib.h>], [llabs(10);],, [ac_c99_stdlib=no]) AC_TRY_COMPILE([#include <stdlib.h>], [lldiv(10,1);],, [ac_c99_stdlib=no]) AC_TRY_COMPILE([#include <stdlib.h>], [atoll("10");],, [ac_c99_stdlib=no]) @@ -1490,7 +1486,8 @@ AC_DEFUN(GLIBCPP_ENABLE_C99, [dnl dnl dnl Check for template specializations for the 'long long' type extension. -dnl NB: Must check for C99 support before calling _GLIBCPP_ENABLE_LONG_LONG +dnl The result determines only whether 'long long' I/O is enabled; things +dnl like numeric_limits<> specializations are always available. dnl dnl GLIBCPP_ENABLE_LONG_LONG dnl --enable-long-long defines _GLIBCPP_USE_LONG_LONG @@ -1515,15 +1512,15 @@ AC_DEFUN(GLIBCPP_ENABLE_LONG_LONG, [dnl esac], enable_long_long=GLIBCPP_ENABLE_LONG_LONG_DEFAULT)dnl - # iostreams require strtoll, strtoull to compile. If the - # GLIBCPP_ENABLE_C99 tests found these, and if C99 support is enabled, - # go ahead and allow long long to be used. - if test x"$enable_c99" = x"no"; then - enable_long_long=no; - fi + AC_MSG_CHECKING([for enabled long long I/O support]) + + # iostreams require strtoll, strtoull to compile + AC_TRY_COMPILE([#include <stdlib.h>], + [char* tmp; strtoll("gnu", &tmp, 10);],,[enable_long_long=no]) + AC_TRY_COMPILE([#include <stdlib.h>], + [char* tmp; strtoull("gnu", &tmp, 10);],,[enable_long_long=no]) # Option parsed, now set things appropriately - AC_MSG_CHECKING([for enabled long long support]) if test x"$enable_long_long" = xyes; then AC_DEFINE(_GLIBCPP_USE_LONG_LONG) fi |