f78262a47b7682ad27b7dfe98c924a0b0f07effd
[gnulib.git] / m4 / expm1f.m4
1 # expm1f.m4 serial 1
2 dnl Copyright (C) 2011-2012 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.
6
7 AC_DEFUN([gl_FUNC_EXPM1F],
8 [
9   AC_REQUIRE([gl_MATH_H_DEFAULTS])
10   AC_REQUIRE([gl_FUNC_EXPM1])
11
12   dnl Persuade glibc <math.h> to declare expm1f().
13   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
14
15   dnl Test whether expm1f() exists. Assume that expm1f(), if it exists, is
16   dnl defined in the same library as expm1().
17   save_LIBS="$LIBS"
18   LIBS="$LIBS $EXPM1_LIBM"
19   AC_CHECK_FUNCS([expm1f])
20   LIBS="$save_LIBS"
21   if test $ac_cv_func_expm1f = yes; then
22     EXPM1F_LIBM="$EXPM1_LIBM"
23   else
24     HAVE_EXPM1F=0
25     dnl Find libraries needed to link lib/expm1f.c.
26     EXPM1F_LIBM="$EXPM1_LIBM"
27   fi
28   AC_SUBST([EXPM1F_LIBM])
29 ])