From: Gary V. Vaughan Date: Mon, 23 Feb 2004 08:27:51 +0000 (+0000) Subject: * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT X-Git-Tag: AUTOCONF-2.59c~731 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2b269d60b2040a120bc4aa43cd19c3a5cb3f86b;p=thirdparty%2Fautoconf.git * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT from the next generation of Libtool. * lib/autom4te.in (Autoreconf-preselections): Ditto. --- diff --git a/ChangeLog b/ChangeLog index dfff2cab5..b25068434 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-02-23 Gary V. Vaughan + + * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT + from the next generation of Libtool. + * lib/autom4te.in (Autoreconf-preselections): Ditto. + 2004-02-20 Alexandre Duret-Lutz * doc/autoconf.texi (Limitations of Usual Tools) : `mkdir -p' diff --git a/bin/autoreconf.in b/bin/autoreconf.in index bc4d0eaf7..4028a9be1 100644 --- a/bin/autoreconf.in +++ b/bin/autoreconf.in @@ -443,6 +443,7 @@ sub autoreconf_current_directory () 'AC_CONFIG_SUBDIRS:AC_CONFIG_SUBDIRS:\$1', 'AC_INIT', 'AC_PROG_LIBTOOL', + 'LT_INIT', 'AM_GNU_GETTEXT', ) . ' |'); @@ -451,7 +452,7 @@ sub autoreconf_current_directory () $aux_dir = $1 if /AC_CONFIG_AUX_DIR:(.*)/; $uses_autoconf = 1 if /AC_INIT/; $uses_gettext_via_traces = 1 if /AM_GNU_GETTEXT/; - $uses_libtool = 1 if /AC_PROG_LIBTOOL/; + $uses_libtool = 1 if /(AC_PROG_LIBTOOL|LT_INIT)/; $uses_autoheader = 1 if /AC_CONFIG_HEADERS/; push @subdir, split (' ', $1) if /AC_CONFIG_SUBDIRS:(.*)/; } diff --git a/lib/autom4te.in b/lib/autom4te.in index e11ea54de..6cf3173d9 100644 --- a/lib/autom4te.in +++ b/lib/autom4te.in @@ -68,6 +68,7 @@ args: --preselect AC_CONFIG_HEADERS args: --preselect AC_CONFIG_SUBDIRS args: --preselect AC_INIT args: --preselect AC_PROG_LIBTOOL +args: --preselect LT_INIT args: --preselect AM_GNU_GETTEXT end-language: "Autoreconf-preselections"