From: Tom Tromey Date: Sun, 20 Jan 2002 21:37:19 +0000 (+0000) Subject: Fix for PR automake/231: X-Git-Tag: Release-1-5d~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1120ca80917111ee059217abdfca744769260d;p=thirdparty%2Fautomake.git Fix for PR automake/231: * m4/gcj.m4 (AM_PROG_GCJ): Use _AM_DEPENDENCIES(GCJ). * m4/depend.m4: Document `GCJ'. --- diff --git a/ChangeLog b/ChangeLog index 0cfa8d1ab..ab36566a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-01-20 Tom Tromey + Fix for PR automake/231: + * m4/gcj.m4 (AM_PROG_GCJ): Use _AM_DEPENDENCIES(GCJ). + * m4/depend.m4: Document `GCJ'. + For PR automake/224: * tests/Makefile.am (TESTS): Added pr224.test. * tests/pr224.test: New file. diff --git a/m4/depend.m4 b/m4/depend.m4 index c95b5fcbe..c631815ef 100644 --- a/m4/depend.m4 +++ b/m4/depend.m4 @@ -29,7 +29,7 @@ # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. -# NAME is "CC", "CXX" or "OBJC". +# NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was diff --git a/m4/gcj.m4 b/m4/gcj.m4 index 0f53de4d6..ea4f9402a 100644 --- a/m4/gcj.m4 +++ b/m4/gcj.m4 @@ -25,4 +25,5 @@ if test "x${GCJFLAGS-unset}" = xunset; then GCJFLAGS="-g -O2" fi AC_SUBST(GCJFLAGS) +_AM_DEPENDENCIES(GCJ) ])