From: Bruno Haible Date: Tue, 29 May 2007 23:00:43 +0000 (+0000) Subject: Avoid "checking..." message inside "checking..." message. X-Git-Tag: cvs-readonly~320 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=98df2968c4a4067e526817b115b185210993e756;p=gnulib.git Avoid "checking..." message inside "checking..." message. --- diff --git a/ChangeLog b/ChangeLog index 870b07f40..2e5d5a4a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2007-05-29 Bruno Haible + * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN + invocation. + Reported by Eric Blake. + +2007-05-29 Bruno Haible + * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross- compiling case. diff --git a/m4/isnan.m4 b/m4/isnan.m4 index d4729cdc3..de692e69a 100644 --- a/m4/isnan.m4 +++ b/m4/isnan.m4 @@ -1,4 +1,4 @@ -# isnan.m4 serial 1 +# isnan.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, @@ -110,10 +110,16 @@ int main () ], [gl_cv_cc_double_expbit0="unknown"], [ + pushdef([AC_MSG_CHECKING],[:])dnl + pushdef([AC_MSG_RESULT],[:])dnl + pushdef([AC_MSG_RESULT_UNQUOTED],[:])dnl AC_C_BIGENDIAN( [gl_cv_cc_double_expbit0="word 0 bit 20"], [gl_cv_cc_double_expbit0="word 1 bit 20"], [gl_cv_cc_double_expbit0="unknown"]) + popdef([AC_MSG_RESULT_UNQUOTED])dnl + popdef([AC_MSG_RESULT])dnl + popdef([AC_MSG_CHECKING])dnl ]) ]) rm -f conftest.out