mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-04-28 06:33:36 +00:00
Reported by G. Branden Robinson <g.branden.robinson@gmail.com> in <https://lists.gnu.org/archive/html/bug-gnulib/2025-12/msg00150.html>. * modules/isinf-no-c++: New file, based on modules/isinf. * modules/isinf: Essentially an alias of isinf-no-c++ now. * modules/isinf-no-c++-tests: Renamed from modules/isinf-tests. * lib/math.in.h (isinf): Test also GNULIB_ISINF_NO_CXX. * m4/math_h.m4 (gl_MATH_H_REQUIRE_DEFAULTS): Initialize GNULIB_ISINF_NO_CXX. * modules/math-h (Makefile.am): Substitute GNULIB_ISINF_NO_CXX. * modules/fmod (Depends-on): Add isinf-no-c++. Remove isinf. * modules/fmodl (Depends-on): Likewise. * modules/hypot (Depends-on): Likewise. * modules/hypotl (Depends-on): Likewise. * modules/modf (Depends-on): Likewise. * modules/modfl (Depends-on): Likewise. * modules/remainder (Depends-on): Likewise. * modules/remainderf (Depends-on): Likewise. * modules/remainderl (Depends-on): Likewise. * modules/strtod (Depends-on): Likewise. * modules/strtof (Depends-on): Likewise. * modules/strtold (Depends-on): Likewise.
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
Description:
|
|
hypotl() function: length of a vector in the plane.
|
|
|
|
Files:
|
|
lib/hypotl.c
|
|
m4/hypotl.m4
|
|
m4/mathfunc.m4
|
|
|
|
Depends-on:
|
|
math-h
|
|
extensions
|
|
hypot [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
|
|
isfinite-no-c++ [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
fabsl [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
frexpl [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
ldexpl [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
sqrtl [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
isinf-no-c++ [{ test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
|
|
configure.ac:
|
|
gl_FUNC_HYPOTL
|
|
gl_CONDITIONAL([GL_COND_OBJ_HYPOTL],
|
|
[test $HAVE_HYPOTL = 0 || test $REPLACE_HYPOTL = 1])
|
|
gl_MATH_MODULE_INDICATOR([hypotl])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_HYPOTL
|
|
lib_SOURCES += hypotl.c
|
|
endif
|
|
|
|
Include:
|
|
<math.h>
|
|
|
|
Link:
|
|
$(HYPOTL_LIBM)
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
all
|