From: Tom Tromey Date: Tue, 6 Aug 1996 17:03:16 +0000 (+0000) Subject: Fixlets X-Git-Tag: Release-1-1c~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6009013f81ee231f82f217da893d30a8d16ce9ea;p=thirdparty%2Fautomake.git Fixlets --- diff --git a/ChangeLog b/ChangeLog index 0cba03dbe..065ffc78d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ +Tue Aug 6 10:58:37 1996 Tom Tromey + + * aclocal.in (parse_arguments): Mention GNU. + * automake.in (parse_arguments): Mention GNU. + Mon Aug 5 00:12:45 1996 Tom Tromey + * automake.in (handle_programs): Define program_LINK. + * program.am (@PROGRAM@): Use program_LINK to link. + * Released version 1.1b * automake.in (scan_configure): AM_INIT_AUTOMAKE sets diff --git a/TODO b/TODO index 3241aba65..42be081d5 100644 --- a/TODO +++ b/TODO @@ -165,9 +165,6 @@ Lex, yacc support: require AC_PROG_CXX if any C++ source files found? Better support for C++ all around -Write autoconf macro to do all work necessary for automake. Eg define -PACKAGE, VERSION, etc. - 'maintainer-clean' should "rm -rf .deps". Ditto distclean Should look for clean-local targets in Makefile.am. diff --git a/aclocal.in b/aclocal.in index 64dbc3429..457c7773e 100644 --- a/aclocal.in +++ b/aclocal.in @@ -104,7 +104,7 @@ sub parse_arguments } elsif ($arglist[0] eq '--version') { - print "aclocal - $PACKAGE $VERSION\n"; + print "aclocal - GNU $PACKAGE $VERSION\n"; exit 0; } elsif ($arglist[0] eq '--help') diff --git a/automake.in b/automake.in index a7a7216f8..b5c7cdcc4 100755 --- a/automake.in +++ b/automake.in @@ -233,7 +233,7 @@ sub parse_arguments { if ($arglist[0] eq "--version") { - print "automake - $PACKAGE $VERSION\n"; + print "automake - GNU $PACKAGE $VERSION\n"; exit 0; } elsif ($arglist[0] eq "--help") @@ -747,6 +747,12 @@ sub handle_programs $output_vars .= $xname . '_LDADD = $(LDADD)' . "\n"; } + # Define prog_LINK unless user did. + if (! &variable_defined ($one_file . '_LINK')) + { + $output_vars .= $xname . '_LINK = $(LINK)' . "\n"; + } + $output_rules .= &file_contents_with_transform ('s/\@PROGRAM\@/' . $one_file . '/go;' diff --git a/configure b/configure index f7f920891..640f6bfca 100755 --- a/configure +++ b/configure @@ -597,7 +597,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL} -m 755' PACKAGE=automake -VERSION=1.1b +VERSION=1.1c if test "$program_transform_name" = s,x,x,; then program_transform_name= diff --git a/configure.in b/configure.in index a0a7cd587..80db06758 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(automake.in) -AM_INIT_AUTOMAKE(automake, 1.1b) +AM_INIT_AUTOMAKE(automake, 1.1c) AC_PROG_MAKE_SET AC_ARG_PROGRAM diff --git a/lib/am/program.am b/lib/am/program.am index 14950de36..87abac0ee 100644 --- a/lib/am/program.am +++ b/lib/am/program.am @@ -16,4 +16,4 @@ ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. @PROGRAM@: $(@XPROGRAM@_OBJECTS) $(@XPROGRAM@_DEPENDENCIES) - $(LINK) $(@XPROGRAM@_OBJECTS) $(@XPROGRAM@_LDADD) $(LIBS) + $(@XPROGRAM@_LINK) $(@XPROGRAM@_OBJECTS) $(@XPROGRAM@_LDADD) $(LIBS) diff --git a/program.am b/program.am index 14950de36..87abac0ee 100644 --- a/program.am +++ b/program.am @@ -16,4 +16,4 @@ ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. @PROGRAM@: $(@XPROGRAM@_OBJECTS) $(@XPROGRAM@_DEPENDENCIES) - $(LINK) $(@XPROGRAM@_OBJECTS) $(@XPROGRAM@_LDADD) $(LIBS) + $(@XPROGRAM@_LINK) $(@XPROGRAM@_OBJECTS) $(@XPROGRAM@_LDADD) $(LIBS) diff --git a/version.texi b/version.texi index 0f31c185d..262db4faf 100644 --- a/version.texi +++ b/version.texi @@ -1,3 +1,3 @@ @set UPDATED 4 August 1996 -@set EDITION 1.1b -@set VERSION 1.1b +@set EDITION 1.1c +@set VERSION 1.1c