[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [GNU Autoconf 2.59] -testsuite 176 failed
From: |
Paul Eggert |
Subject: |
Re: [GNU Autoconf 2.59] -testsuite 176 failed |
Date: |
Tue, 19 Apr 2005 22:39:07 -0700 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.4 (gnu/linux) |
"Jennis Pruett" <address@hidden> writes:
>> +core.conftest.qscms0.0
Thanks for reporting that failure symptom. It doesn't cause any real
problems, so I wouldn't worry about it. I installed the following
patch to Autoconf so that users of future releases shouldn't be
bothered by the test failure.
2005-04-19 Paul Eggert <address@hidden>
* lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
Remove core.conftest.* too; it's generated by Tru64 5.1.
Problem reported by Jennis Pruett.
* lib/autoconf/functions.m4
(AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
Don't bother to remove core files; AC_RUN_IFELSE should do that
for you.
Index: lib/autoconf/functions.m4
===================================================================
RCS file: /cvsroot/autoconf/autoconf/lib/autoconf/functions.m4,v
retrieving revision 1.90
diff -p -u -r1.90 functions.m4
--- lib/autoconf/functions.m4 6 Feb 2005 18:06:32 -0000 1.90
+++ lib/autoconf/functions.m4 20 Apr 2005 04:43:47 -0000
@@ -1,6 +1,7 @@
# This file is part of Autoconf. -*- Autoconf -*-
# Checking for functions.
-# Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software
+# Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -1621,7 +1622,7 @@ AC_CACHE_CHECK(whether setvbuf arguments
putchar ('\r');
exit (0); /* Non-reversed systems SEGV here. */]])],
[ac_cv_func_setvbuf_reversed=yes],
- [rm -f core *.core],
+ [],
[[: # Assume setvbuf is not reversed when cross-compiling.]])]
ac_cv_func_setvbuf_reversed=yes)])])
if test $ac_cv_func_setvbuf_reversed = yes; then
@@ -1679,8 +1680,7 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLU
&& t.st_mtime - s.st_mtime < 120));]])],
ac_cv_func_utime_null=yes,
ac_cv_func_utime_null=no,
- ac_cv_func_utime_null=no)
-rm -f core *.core])
+ ac_cv_func_utime_null=no)])
if test $ac_cv_func_utime_null = yes; then
AC_DEFINE(HAVE_UTIME_NULL, 1,
[Define to 1 if `utime(file, NULL)' sets file's timestamp to the
Index: lib/autoconf/general.m4
===================================================================
RCS file: /cvsroot/autoconf/autoconf/lib/autoconf/general.m4,v
retrieving revision 1.848
diff -p -u -r1.848 general.m4
--- lib/autoconf/general.m4 23 Mar 2005 01:02:04 -0000 1.848
+++ lib/autoconf/general.m4 20 Apr 2005 04:43:47 -0000
@@ -1284,7 +1284,7 @@ trap 'exit_status=$?
echo "$as_me: caught signal $ac_signal"
echo "$as_me: exit $exit_status"
} >&AS_MESSAGE_LOG_FD
- rm -f core *.core &&
+ rm -f core *.core core.conftest.* &&
rm -f -r conftest* confdefs* conf$[$]* $ac_clean_files &&
exit $exit_status
' 0
@@ -2370,7 +2370,7 @@ _AC_MSG_LOG_CONFTEST
m4_ifvaln([$3],
[( exit $ac_status )
$3])dnl])[]dnl
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext
m4_ifval([$1],
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext
conftest.$ac_objext m4_ifval([$1],
[conftest.$ac_ext])[]dnl
])# _AC_RUN_IFELSE
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [GNU Autoconf 2.59] -testsuite 176 failed,
Paul Eggert <=