X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fceilf.m4;h=0eab4740add94305298f453756a719fdcdda819c;hb=b4feec417c7eae7c4a920986d8c81659ac5c9a79;hp=b409829945f73ec00d0423a0d240506ce7540924;hpb=1fd8064a06ed3ca83f73c495e998e66c225e395b;p=gnulib.git diff --git a/m4/ceilf.m4 b/m4/ceilf.m4 index b40982994..0eab4740a 100644 --- a/m4/ceilf.m4 +++ b/m4/ceilf.m4 @@ -1,4 +1,4 @@ -# ceilf.m4 serial 2 +# ceilf.m4 serial 3 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, @@ -15,14 +15,18 @@ AC_DEFUN([gl_FUNC_CEILF], dnl Test whether ceilf() can be used without libm. gl_FUNC_CEILF_LIBS if test "$CEILF_LIBM" = "?"; then - CEILF_LIBM= + dnl Sun C 5.0 on Solaris declares ceilf() and has it in the system-wide + dnl libm.so, but not in the libm.so that the compiler uses. + REPLACE_CEILF=1 fi else - HAVE_DECL_CEILF=0 + REPLACE_CEILF=1 + fi + if test $REPLACE_CEILF = 1; then AC_LIBOBJ([ceilf]) CEILF_LIBM= fi - AC_SUBST([HAVE_DECL_CEILF]) + AC_SUBST([REPLACE_CEILF]) AC_SUBST([CEILF_LIBM]) ]) @@ -30,8 +34,8 @@ AC_DEFUN([gl_FUNC_CEILF], # Sets CEILF_LIBM. AC_DEFUN([gl_FUNC_CEILF_LIBS], [ - AC_CACHE_VAL([gl_func_ceilf_libm], [ - gl_func_ceilf_libm=? + AC_CACHE_VAL([gl_cv_func_ceilf_libm], [ + gl_cv_func_ceilf_libm=? AC_TRY_LINK([ #ifndef __NO_MATH_INLINES # define __NO_MATH_INLINES 1 /* for glibc */ @@ -39,8 +43,8 @@ AC_DEFUN([gl_FUNC_CEILF_LIBS], #include float x;], [x = ceilf(x);], - [gl_func_ceilf_libm=]) - if test "$gl_func_ceilf_libm" = "?"; then + [gl_cv_func_ceilf_libm=]) + if test "$gl_cv_func_ceilf_libm" = "?"; then save_LIBS="$LIBS" LIBS="$LIBS -lm" AC_TRY_LINK([ @@ -50,9 +54,9 @@ AC_DEFUN([gl_FUNC_CEILF_LIBS], #include float x;], [x = ceilf(x);], - [gl_func_ceilf_libm="-lm"]) + [gl_cv_func_ceilf_libm="-lm"]) LIBS="$save_LIBS" fi ]) - CEILF_LIBM="$gl_func_ceilf_libm" + CEILF_LIBM="$gl_cv_func_ceilf_libm" ])