2 dnl Copyright (C) 2012-2020 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_HYPOT],
9 m4_divert_text([DEFAULTS], [gl_hypot_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
12 dnl Persuade glibc <math.h> to declare hypot().
13 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15 dnl Determine HYPOT_LIBM.
16 gl_COMMON_DOUBLE_MATHFUNC([hypot])
18 m4_ifdef([gl_FUNC_HYPOT_IEEE], [
19 if test $gl_hypot_required = ieee && test $REPLACE_HYPOT = 0; then
20 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
21 AC_CACHE_CHECK([whether hypot works according to ISO C 99 with IEC 60559],
22 [gl_cv_func_hypot_ieee],
25 LIBS="$LIBS $HYPOT_LIBM"
28 #ifndef __NO_MATH_INLINES
29 # define __NO_MATH_INLINES 1 /* for glibc */
32 /* Compare two numbers with ==.
33 This is a separate function because IRIX 6.5 "cc -O" miscompiles an
36 numeric_equal (double x, double y)
40 static double dummy (double x, double y) { return 0; }
43 int main (int argc, char *argv[])
45 double (* volatile my_hypot) (double, double) = argc ? hypot : dummy;
47 /* Test hypot(NaN,Infinity).
48 This test fails on OSF/1 5.1 and native Windows. */
49 f = my_hypot (zero / zero, one / zero);
50 if (!numeric_equal (f, f))
55 [gl_cv_func_hypot_ieee=yes],
56 [gl_cv_func_hypot_ieee=no],
58 # Guess yes on glibc systems.
59 *-gnu* | gnu*) gl_cv_func_hypot_ieee="guessing yes" ;;
60 # Guess yes on musl systems.
61 *-musl*) gl_cv_func_hypot_ieee="guessing yes" ;;
62 # Guess yes on native Windows.
63 mingw*) gl_cv_func_hypot_ieee="guessing yes" ;;
64 # If we don't know, obey --enable-cross-guesses.
65 *) gl_cv_func_hypot_ieee="$gl_cross_guess_normal" ;;
70 case "$gl_cv_func_hypot_ieee" in
76 if test $REPLACE_HYPOT = 1; then
77 dnl Find libraries needed to link lib/hypot.c.
78 AC_REQUIRE([gl_FUNC_FABS])
79 AC_REQUIRE([gl_FUNC_FREXP])
80 AC_REQUIRE([gl_FUNC_LDEXP])
81 AC_REQUIRE([gl_FUNC_SQRT])
83 dnl Append $FABS_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
84 case " $HYPOT_LIBM " in
86 *) HYPOT_LIBM="$HYPOT_LIBM $FABS_LIBM" ;;
88 dnl Append $FREXP_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
89 case " $HYPOT_LIBM " in
91 *) HYPOT_LIBM="$HYPOT_LIBM $FREXP_LIBM" ;;
93 dnl Append $LDEXP_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
94 case " $HYPOT_LIBM " in
96 *) HYPOT_LIBM="$HYPOT_LIBM $LDEXP_LIBM" ;;
98 dnl Append $SQRT_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
99 case " $HYPOT_LIBM " in
101 *) HYPOT_LIBM="$HYPOT_LIBM $SQRT_LIBM" ;;