* 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.
This commit is contained in:
Paul Eggert 2006-11-09 21:03:54 +00:00
parent 570310e87e
commit 5bcf9bc19c
2 changed files with 9 additions and 0 deletions

View File

@ -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>

View File

@ -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}
'