bug-autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [GNU Autoconf 2.59d] testsuite: 107 118 failed


From: Paul Eggert
Subject: Re: [GNU Autoconf 2.59d] testsuite: 107 118 failed
Date: Tue, 06 Jun 2006 16:37:06 -0700
User-agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux)

Thanks for reporting those bugs.  The problem is that your compiler is
dumping core.  Does the following patch cause 'make check' to work?
(I haven't installed it.)

2006-06-06  Paul Eggert  <address@hidden>

        * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
        case the compiler dumps core.  Problem reported for
        OpenServer 5.0.7 by Tim Rice in
        <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
        * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
        Likewise.

--- lib/autoconf/c.m4   30 May 2006 07:28:01 -0000      1.229
+++ lib/autoconf/c.m4   6 Jun 2006 23:36:31 -0000
@@ -664,7 +664,7 @@ then
 else
   eval ac_cv_prog_cc_${ac_cc}_c_o=no
 fi
-rm -f conftest*
+rm -f core conftest*
 ])dnl
 if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
   AC_MSG_RESULT([yes])
--- lib/autoconf/general.m4     31 May 2006 19:49:15 -0000      1.924
+++ lib/autoconf/general.m4     6 Jun 2006 23:36:31 -0000
@@ -2363,7 +2363,7 @@ AS_IF([_AC_DO_STDERR($ac_compile) &&
       [$2],
       [_AC_MSG_LOG_CONFTEST
        $3])
-rm -f conftest.err conftest.$ac_objext m4_ifval([$1], [conftest.$ac_ext])[]dnl
+rm -f core conftest.err conftest.$ac_objext m4_ifval([$1], 
[conftest.$ac_ext])[]dnl
 ])# _AC_COMPILE_IFELSE
 
 
@@ -2403,7 +2403,7 @@ AS_IF([_AC_DO_STDERR($ac_link) &&
       [$2],
       [_AC_MSG_LOG_CONFTEST
        $3])
-rm -f conftest.err conftest.$ac_objext \
+rm -f core conftest.err conftest.$ac_objext \
       conftest$ac_exeext m4_ifval([$1], [conftest.$ac_ext])[]dnl
 ])# _AC_LINK_IFELSE
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]