X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Flog10f.m4;h=5fd2f7ac68316c621ebd346e0f5a2198bc4f583e;hb=62dbbbd1dd25b29720a66a2a2a9c6cec0f7bac10;hp=e2dc60d7fe204db47532217dabab2fc01f8d1c07;hpb=d4b6128e5b83f528e79259585977a126ce29c7a8;p=gnulib.git diff --git a/m4/log10f.m4 b/m4/log10f.m4 index e2dc60d7f..5fd2f7ac6 100644 --- a/m4/log10f.m4 +++ b/m4/log10f.m4 @@ -1,4 +1,4 @@ -# log10f.m4 serial 4 +# log10f.m4 serial 6 dnl Copyright (C) 2011-2012 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -33,11 +33,12 @@ AC_DEFUN([gl_FUNC_LOG10F], m4_ifdef([gl_FUNC_LOG10F_IEEE], [ if test $gl_log10f_required = ieee && test $REPLACE_LOG10F = 0; then + AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles AC_CACHE_CHECK([whether log10f works according to ISO C 99 with IEC 60559], [gl_cv_func_log10f_ieee], [ save_LIBS="$LIBS" - LIBS="$LIBS $LOGF_LIBM" + LIBS="$LIBS $LOG10F_LIBM" AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #ifndef __NO_MATH_INLINES @@ -66,7 +67,13 @@ int main (int argc, char *argv[]) ]])], [gl_cv_func_log10f_ieee=yes], [gl_cv_func_log10f_ieee=no], - [gl_cv_func_log10f_ieee="guessing no"]) + [case "$host_os" in + # Guess yes on glibc systems. + *-gnu*) gl_cv_func_log10f_ieee="guessing yes" ;; + # If we don't know, assume the worst. + *) gl_cv_func_log10f_ieee="guessing no" ;; + esac + ]) LIBS="$save_LIBS" ]) case "$gl_cv_func_log10f_ieee" in