]> sourceware.org Git - automake.git/commitdiff
applied AC_PROG_CXXCPP patch
authorTom Tromey <tromey@redhat.com>
Thu, 5 Feb 1998 20:42:53 +0000 (20:42 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 5 Feb 1998 20:42:53 +0000 (20:42 +0000)
ChangeLog
THANKS
automake.in
tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/cxxcpp.test [new file with mode: 0755]

index 79e547a562cb30dd6f7b1d0cf7e96c504d07cd6b..c3a832cc178142a94b6ef597c2cf063ffa89e041 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb  5 13:38:55 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * automake.in (scan_one_configure_file): Put CXCPP before CXX in
+       regexp.  From Garth Corral.  Test cxxxcpp.test.
+
 Sun Jan 25 11:16:53 1998  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in (generate_makefile): Run handle_minor_options before
diff --git a/THANKS b/THANKS
index 71539a64e7b506401a75e8c90abca128de55b5e6..a4e46eac188f73a9d871d2f493334ed5af54fd3b 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -17,6 +17,7 @@ Erick Branderhorst    branderh@iaehv.nl
 François Pinard                pinard@iro.umontreal.ca
 Fred Fish              fnf@ninemoons.com
 Garrett D'Amore                garrett@qualcomm.com
+Garth Corral           garthc@inktomi.com
 Glenn Amerine          glenn@pie.mhsc.org
 Gord Matzigkeit                gord@gnu.ai.mit.edu
 Greg A. Woods          woods@most.weird.com
index 844ecd47f5b05abf4a2b613330202ff9e937eba6..fd661217b76f1a04e7247c822414068b5f2a124a 100755 (executable)
@@ -4115,7 +4115,7 @@ sub scan_one_configure_file
        $seen_make_set = 1 if /AC_PROG_MAKE_SET/;
        $seen_arg_prog = 1 if /AC_ARG_PROGRAM/;
 
-       if (/AC_PROG_(YACC|RANLIB|CC|CXX|LEX|AWK|CPP|CXXCPP|LN_S)/)
+       if (/AC_PROG_(YACC|RANLIB|CC|CXXCPP|CXX|LEX|AWK|CPP|LN_S)/)
        {
            $configure_vars{$1} = 1;
        }
index 351cc34a0dee32ebce4fc9d206b692d8dea09691..66176adfd35a65a9a1c99e3bfbd3d8e4c8192179 100644 (file)
@@ -1,3 +1,7 @@
+Thu Feb  5 13:22:17 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * cxxcpp.test: New file.
+
 Mon Dec  1 15:48:16 1997  Tom Tromey  <tromey@cygnus.com>
 
        * cond3.test: New file.
index 86ccbff33e9bc72d7d9cf6669cb92cb034a97f23..8144e9a4e8fb283c6032d8bb97de3d51fcf1a203 100644 (file)
@@ -27,7 +27,7 @@ yaccpp.test texinfo3.test texinfo4.test tagsub.test cxxlibobj.test \
 seenc.test cygwin32.test lisp.test stamph.test ldadd.test \
 version2.test conf2.test cond.test cond2.test xsource.test \
 libobj6.test depend3.test output5.test ammissing.test install.test \
-libobj7.test objc.test cond3.test
+libobj7.test objc.test cond3.test cxxcpp.test
 
 EXTRA_DIST = defs $(TESTS)
 
index 6fa561d56f42a34844c55ff7b0afb80fdb49ffa7..3839bb26227126510ebb69e5d25fd449ca60d9bf 100644 (file)
@@ -88,7 +88,7 @@ yaccpp.test texinfo3.test texinfo4.test tagsub.test cxxlibobj.test \
 seenc.test cygwin32.test lisp.test stamph.test ldadd.test \
 version2.test conf2.test cond.test cond2.test xsource.test \
 libobj6.test depend3.test output5.test ammissing.test install.test \
-libobj7.test objc.test cond3.test
+libobj7.test objc.test cond3.test cxxcpp.test
 
 EXTRA_DIST = defs $(TESTS)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
diff --git a/tests/cxxcpp.test b/tests/cxxcpp.test
new file mode 100755 (executable)
index 0000000..0a90fc7
--- /dev/null
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+# Make sure automake sees AC_PROG_CXXCPP.  From Garth Corral.
+
+. $srcdir/defs || exit 1
+
+cat >> configure.in << 'END'
+AC_PROG_CXXCPP
+END
+
+
+: > Makefile.am
+
+$AUTOMAKE || exit 1
+
+grep '^CXXCPP' Makefile.in
This page took 0.050721 seconds and 5 git commands to generate.