diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-25 08:06:47 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-25 08:06:47 +0000 |
commit | 1e59e631f4883b34561e3807ce3829a4b36fdcff (patch) | |
tree | 3c9a527aa129d17798187094a56296270e1eb09a /libstdc++-v3/config.h.in | |
parent | 2809d86d7e40497c3229168d3a7ce3b687fd0233 (diff) | |
download | gcc-1e59e631f4883b34561e3807ce3829a4b36fdcff.tar.gz |
* acinclude.m4: CHECK_MATH_DECL_AND_LINKAGE for hypot, hypotf,
hypotl, atan2f, atan2l. Remove from REPLACE_MATHFUNCS list.
* aclocal.m4: Regenerate.
* config.h.in: Likewise.
* configure: Likewise.
* libmath/Makefile.am (EXTRA_LONG_DOUBLE_yes): Remove hypotl.c
(EXTRA_DIST): Remove hypot.c hypotf.c.
* libmath/Makefile.am: Regenerate.
* libmath/hypotf.c: Remove.
* libmath/hypot.c: Likewise.
* libmath/hypotl.c: Likewise.
* libmath/stubs.c: The macros seen here are HAVE_xxx, not
_GLIBCPP_HAVE_xxx. Add long double versions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44334 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index 9246654e195..e056ff78c59 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -87,6 +87,9 @@ /* Define if you have the _asinl function. */ #undef HAVE__ASINL +/* Define if you have the _atan2f function. */ +#undef HAVE__ATAN2F + /* Define if you have the _atan2l function. */ #undef HAVE__ATAN2L @@ -159,6 +162,15 @@ /* Define if you have the _frexpl function. */ #undef HAVE__FREXPL +/* Define if you have the _hypot function. */ +#undef HAVE__HYPOT + +/* Define if you have the _hypotf function. */ +#undef HAVE__HYPOTF + +/* Define if you have the _hypotl function. */ +#undef HAVE__HYPOTL + /* Define if you have the _isinf function. */ #undef HAVE__ISINF @@ -261,6 +273,9 @@ /* Define if you have the asinl function. */ #undef HAVE_ASINL +/* Define if you have the atan2f function. */ +#undef HAVE_ATAN2F + /* Define if you have the atan2l function. */ #undef HAVE_ATAN2L |