diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-05 02:00:18 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-05 02:00:18 +0000 |
commit | 68224f8df257883ccb806659d64e64debadbc11f (patch) | |
tree | 8ca19c32549dc8a7643db3a9fa2ead2353a5c85f /libstdc++-v3/acconfig.h | |
parent | 5f13ddb706605afd3c5a17b0a98e2f97dfef58b5 (diff) | |
download | ppe42-gcc-68224f8df257883ccb806659d64e64debadbc11f.tar.gz ppe42-gcc-68224f8df257883ccb806659d64e64debadbc11f.zip |
2003-08-04 Phil Edwards <pme@gcc.gnu.org>
Convert to new autotools.
* acconfig.h: Update with correct names.
* configure.host (ATOMICITYH): Rename to atomicity_include_dir.
(qnx6.[12]*): 'q' comes before 's', not after 'w'.
* configure.in: Update. Split hardcoded cross-configury settings
out to...
* crossconfig.m4: ...here. New file. Contents untouched.
* acinclude.m4: Reorganize and rewrite as needed. Split large
chunks out to...
* linkage.m4: ...here. New file. Math and stdlib linkage tests.
Contents untouched.
* scripts/testsuite_flags.in: Update.
* Makefile.am: Remove unneeded AUTOMAKE_OPTIONS settings and other
variables (already generated by automake).
* include/Makefile.am: Ditto.
* libmath/Makefile.am: Ditto.
* libsupc++/Makefile.am: Ditto.
* po/Makefile.am: Ditto.
* src/Makefile.am: Ditto.
* aclocal.m4: Regenerate using new versions.
* config.h.in: Ditto.
* configure: Ditto.
* Makefile.in: Ditto.
* include/Makefile.in: Ditto.
* libmath/Makefile.in: Ditto.
* libsupc++/Makefile.in: Ditto.
* po/Makefile.in: Ditto.
* src/Makefile.in: Ditto.
* testsuite/Makefile.in: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70167 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/acconfig.h')
-rw-r--r-- | libstdc++-v3/acconfig.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libstdc++-v3/acconfig.h b/libstdc++-v3/acconfig.h index dbc1c5a2e15..783f6d6db5e 100644 --- a/libstdc++-v3/acconfig.h +++ b/libstdc++-v3/acconfig.h @@ -35,13 +35,16 @@ #undef _GLIBCXX_CONCEPT_CHECKS // Define if the atan2f function exists. -#undef _GLIBCXX_HAVE_ATAN2F +#undef HAVE_ATAN2F // Define if the atan2l function exists. -#undef _GLIBCXX_HAVE_ATAN2L +#undef HAVE_ATAN2L + +// Define if the tanl function exists. +#undef HAVE_TANL // Define if the copysignf function exists. -#undef _GLIBCXX_HAVE_COPYSIGNF +#undef HAVE_COPYSIGNF // Define to use symbol versioning in the shared library. #undef _GLIBCXX_SYMVER @@ -87,6 +90,9 @@ // Define if you have the expl function. #undef HAVE_EXPL +// Define if you have the hypot function. +#undef HAVE_HYPOT + // Define if you have the hypotf function. #undef HAVE_HYPOTF |