diff options
author | Mark Mitchell <mark@codesourcery.com> | 2003-12-29 19:26:16 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-12-29 19:26:16 +0000 |
commit | 517da0ce8a43b9d9cbc185232db7cf1121908f10 (patch) | |
tree | bf822e4da5d4ebefe8894111a122f80ee4d1b258 /libstdc++-v3/aclocal.m4 | |
parent | 88e541e13b8cd466aa6cf4acaada7345e43b8eee (diff) | |
download | gcc-517da0ce8a43b9d9cbc185232db7cf1121908f10.zip gcc-517da0ce8a43b9d9cbc185232db7cf1121908f10.tar.gz gcc-517da0ce8a43b9d9cbc185232db7cf1121908f10.tar.bz2 |
acconfig.h: Add _GLIBCXX_USE_C99_MATH.
* acconfig.h: Add _GLIBCXX_USE_C99_MATH.
* acinclude.m4 (GLIBCXX_ENABLE_C99): Define GLIBCXX_USE_C99_MATH.
* configure.ac: Define HAVE_S_ISREG and HAVE_S_IFREG when
targeting newlib.
* aclocal.m4: Regenerated.
* config.h.in: Likewise.
* configure: Likewise.
* Makefile.in: Likewise.
* include/Makefile.in: Likewise.
* libmath/Makefile.in: Likewise.
* libsupc++/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.
* src/Makefile.in: Likewise.
* po/Makefile.in: Likewise.
* include/c_std/std_cmath.h (_GLIBCXX_USE_C99): Replace with ...
(_GLIBCXX_USE_C99_MATH): ... this.
* testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: XFAIL for
arm-none-elf.
* testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Likewise.
* testsuite/27_io/basic_filebuf/sgetn/char/2-in.cc: Likewise.
* testsuite/27_io/basic_filebuf/sgetn/char/2-io.cc: Likewise.
* testsuite/27_io/basic_istream/readsome/char/6476-2.cc: Likewise.
* testsuite/27_io/objects/char/9.cc: Likewise.
* testsuite/ext/stdio_filebuf/char/10063-2.cc: Likewise.
From-SVN: r75209
Diffstat (limited to 'libstdc++-v3/aclocal.m4')
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index a0aeed2..a2fcf8a 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.7.8 -*- Autoconf -*- +# generated automatically by aclocal 1.7.9 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. @@ -879,6 +879,10 @@ AC_DEFUN(GLIBCXX_ENABLE_C99, [ [isunordered(0.0,0.0);],, [ac_c99_math=no]) AC_MSG_RESULT($ac_c99_math) + if test x"$ac_c99_math" = x"yes"; then + AC_DEFINE(_GLIBCXX_USE_C99_MATH) + fi + # Check for the existence in <stdio.h> of vscanf, et. al. ac_c99_stdio=yes; AC_MSG_CHECKING([for ISO C99 support in <stdio.h>]) @@ -955,6 +959,10 @@ AC_DEFUN(GLIBCXX_ENABLE_C99, [ fi; AC_MSG_RESULT($enable_c99) + if test x"$ac_99_math" = x"yes"; then + AC_DEFINE(_GLIBCXX_USE_C99_MATH) + fi + # Option parsed, now set things appropriately if test x"$enable_c99" = x"yes"; then AC_DEFINE(_GLIBCXX_USE_C99) @@ -1985,7 +1993,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"]) # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], - [AM_AUTOMAKE_VERSION([1.7.8])]) + [AM_AUTOMAKE_VERSION([1.7.9])]) # Helper functions for option handling. -*- Autoconf -*- |