New module 'printf-frexp'.
[gnulib.git] / m4 / printf-frexp.m4
1 # printf-frexp.m4 serial 1
2 dnl Copyright (C) 2007 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 dnl Check how to define printf_frexp() without linking with libm.
8
9 AC_DEFUN([gl_FUNC_PRINTF_FREXP],
10 [
11   AC_CACHE_CHECK([whether frexp can be used without linking with libm],
12     [gl_cv_func_frexp_no_libm],
13     [
14       AC_TRY_LINK([#include <math.h>
15                    double x;
16                    int y;],
17                   [return frexp (x, &y) < 1;],
18         [gl_cv_func_frexp_no_libm=yes],
19         [gl_cv_func_frexp_no_libm=no])
20     ])
21   if test $gl_cv_func_frexp_no_libm = yes; then
22     AC_DEFINE([HAVE_FREXP_IN_LIBC], 1,
23       [Define if the frexp function is available in libc.])
24   fi
25
26   AC_CACHE_CHECK([whether ldexp can be used without linking with libm],
27     [gl_cv_func_ldexp_no_libm],
28     [
29       AC_TRY_LINK([#include <math.h>
30                    double x;
31                    int y;],
32                   [return ldexp (x, y) < 1;],
33         [gl_cv_func_ldexp_no_libm=yes],
34         [gl_cv_func_ldexp_no_libm=no])
35     ])
36   if test $gl_cv_func_ldexp_no_libm = yes; then
37     AC_DEFINE([HAVE_LDEXP_IN_LIBC], 1,
38       [Define if the ldexp function is available in libc.])
39   fi
40 ])