2 dnl Copyright (C) 2012-2018 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 (*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 native Windows.
61 mingw*) gl_cv_func_hypot_ieee="guessing yes" ;;
62 # If we don't know, assume the worst.
63 *) gl_cv_func_hypot_ieee="guessing no" ;;
68 case "$gl_cv_func_hypot_ieee" in
74 if test $REPLACE_HYPOT = 1; then
75 dnl Find libraries needed to link lib/hypot.c.
76 AC_REQUIRE([gl_FUNC_FABS])
77 AC_REQUIRE([gl_FUNC_FREXP])
78 AC_REQUIRE([gl_FUNC_LDEXP])
79 AC_REQUIRE([gl_FUNC_SQRT])
81 dnl Append $FABS_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
82 case " $HYPOT_LIBM " in
84 *) HYPOT_LIBM="$HYPOT_LIBM $FABS_LIBM" ;;
86 dnl Append $FREXP_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
87 case " $HYPOT_LIBM " in
89 *) HYPOT_LIBM="$HYPOT_LIBM $FREXP_LIBM" ;;
91 dnl Append $LDEXP_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
92 case " $HYPOT_LIBM " in
94 *) HYPOT_LIBM="$HYPOT_LIBM $LDEXP_LIBM" ;;
96 dnl Append $SQRT_LIBM to HYPOT_LIBM, avoiding gratuitous duplicates.
97 case " $HYPOT_LIBM " in
99 *) HYPOT_LIBM="$HYPOT_LIBM $SQRT_LIBM" ;;