gnulib-tool: Omit the logs of skipped tests from test-suite.log.
[gnulib.git] / m4 / expf.m4
blobc80118169b9bb747822ef8c2c1c6c436e0f25d09
1 # expf.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_EXPF],
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_FUNC_EXP])
13   dnl Persuade glibc <math.h> to declare expf().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16   dnl Test whether expf() exists. Assume that expf(), if it exists, is
17   dnl defined in the same library as exp().
18   saved_LIBS="$LIBS"
19   LIBS="$LIBS $EXP_LIBM"
20   AC_CHECK_FUNCS([expf])
21   LIBS="$saved_LIBS"
22   if test $ac_cv_func_expf = yes; then
23     EXPF_LIBM="$EXP_LIBM"
24   else
25     HAVE_EXPF=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_expf, not expf.
29     AC_CHECK_DECLS([expf], [REPLACE_EXPF=1], , [[#include <math.h>]])
30     EXPF_LIBM="$EXP_LIBM"
31   fi
32   AC_SUBST([EXPF_LIBM])