From a8960f4f8bee1d141cc622303a8dc8ff1f27f7eb Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 6 Mar 2007 03:38:53 +0000 Subject: [PATCH] Provide missing frexpl(), ldexpl() declarations. --- ChangeLog | 6 ++++++ lib/printf-frexp.c | 8 ++++++++ m4/printf-frexpl.m4 | 8 +++++++- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f11889f701..90a18c6df9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-03-05 Bruno Haible + + * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether + frexpl and ldexpl are declared. + * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations. + 2007-03-05 Bruno Haible * gnulib-tool (func_get_automake_snippet): Don't synthesize an diff --git a/lib/printf-frexp.c b/lib/printf-frexp.c index e6032a4fb0..b122da5f38 100644 --- a/lib/printf-frexp.c +++ b/lib/printf-frexp.c @@ -41,6 +41,14 @@ # define USE_FREXP_LDEXP # define FREXP frexpl # define LDEXP ldexpl + /* glibc (2.3..2.5 at least) and MacOS X 10.3 have frexpl and ldexpl in + libc, but don't declare them. */ +# if !HAVE_DECL_FREXPL +extern long double frexpl (long double, int *); +# endif +# if !HAVE_DECL_LDEXPL +extern long double ldexpl (long double, int); +# endif # endif # define L_(literal) literal##L # else diff --git a/m4/printf-frexpl.m4 b/m4/printf-frexpl.m4 index f664890992..e21ae36e61 100644 --- a/m4/printf-frexpl.m4 +++ b/m4/printf-frexpl.m4 @@ -1,4 +1,4 @@ -# printf-frexpl.m4 serial 1 +# printf-frexpl.m4 serial 2 dnl Copyright (C) 2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -23,6 +23,9 @@ AC_DEFUN([gl_FUNC_PRINTF_FREXPL], if test $gl_cv_func_frexpl_no_libm = yes; then AC_DEFINE([HAVE_FREXPL_IN_LIBC], 1, [Define if the frexpl function is available in libc.]) + dnl Also check whether it's declared. glibc (2.3..2.5 at least) and + dnl MacOS X 10.3 have frexpl() in libc but don't declare it in . + AC_CHECK_DECLS([frexpl]) fi AC_CACHE_CHECK([whether ldexpl can be used without linking with libm], @@ -38,6 +41,9 @@ AC_DEFUN([gl_FUNC_PRINTF_FREXPL], if test $gl_cv_func_ldexpl_no_libm = yes; then AC_DEFINE([HAVE_LDEXPL_IN_LIBC], 1, [Define if the ldexpl function is available in libc.]) + dnl Also check whether it's declared. glibc (2.3..2.5 at least) and + dnl MacOS X 10.3 have ldexpl() in libc but don't declare it in . + AC_CHECK_DECLS([ldexpl]) fi fi ]) -- 2.30.2