From: Paul Eggert Date: Thu, 9 Nov 2006 21:03:54 +0000 (+0000) Subject: * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for X-Git-Tag: AUTOCONF-2.61~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bcf9bc19c49e7449b943ca656d4751caf088c18;p=thirdparty%2Fautoconf.git * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for benefit of platforms like Solaris+GCC where it is common to have a non-working g++ installation. --- diff --git a/ChangeLog b/ChangeLog index 438251690..b025aee9b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-11-09 Paul Eggert + + * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for + benefit of platforms like Solaris+GCC where it is common to have a + non-working g++ installation. + 2006-11-08 Ralf Wildenhues and Joel E. Denny and Paul Eggert diff --git a/tests/mktests.sh b/tests/mktests.sh index 157a7112a..845bd3514 100755 --- a/tests/mktests.sh +++ b/tests/mktests.sh @@ -131,6 +131,9 @@ ac_exclude_list=' /^AC_(PROG_CC|C_CONST|C_VOLATILE)$/ {next} /^AC_PATH_XTRA$/ {next} + # Requires a working C++ compiler, which is not a given. + /^AC_PROG_CXX_C_O$/ {next} + # Already tested by AT_CHECK_MACRO. /^AC_OUTPUT$/ {next} '