]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 9 Nov 2006 21:03:54 +0000 (21:03 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 9 Nov 2006 21:03:54 +0000 (21:03 +0000)
benefit of platforms like Solaris+GCC where it is common to have a
non-working g++ installation.

ChangeLog
tests/mktests.sh

index 4382516909cc7c6649d0149d4e347c2ef9835458..b025aee9bf3c99039f1416bcf00d20062c3ae175 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * 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  <Ralf.Wildenhues@gmx.de>
        and Joel E. Denny  <jdenny@ces.clemson.edu>
        and Paul Eggert  <eggert@cs.ucla.edu>
index 157a7112a136d49ef7248f528caef38ca29814e8..845bd35147fa4c31c6f3b3b2a4175031887797fe 100755 (executable)
@@ -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}
 '