doc: Remove references to POSIX 202x.
[gnulib.git] / m4 / coshf.m4
blob8ef735d182fc98ccc89b90ab5e655e4efdd2667f
1 # coshf.m4
2 # serial 4
3 dnl Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
8 AC_DEFUN([gl_FUNC_COSHF],
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_FUNC_COSH])
13   dnl Persuade glibc <math.h> to declare coshf().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16   dnl Test whether coshf() exists. Assume that coshf(), if it exists, is
17   dnl defined in the same library as cosh().
18   saved_LIBS="$LIBS"
19   LIBS="$LIBS $COSH_LIBM"
20   AC_CHECK_FUNCS([coshf])
21   LIBS="$saved_LIBS"
22   if test $ac_cv_func_coshf = yes; then
23     COSHF_LIBM="$COSH_LIBM"
24   else
25     HAVE_COSHF=0
26     dnl If the function is declared but does not appear to exist, it may be
27     dnl defined as an inline function. In order to avoid a conflict, we have
28     dnl to define rpl_coshf, not coshf.
29     AC_CHECK_DECLS([coshf], [REPLACE_COSHF=1], , [[#include <math.h>]])
30     COSHF_LIBM="$COSH_LIBM"
31   fi
32   AC_SUBST([COSHF_LIBM])