From 7689032c17edd4dfcc486e19b0f976bb810746ec Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Sat, 12 Jan 2002 18:48:53 +0000 Subject: [PATCH] * m4/init.m4 (AM_INIT_AUTOMAKE): Set PACKAGE and VERSION from AM_INIT_AUTOMAKE arguments when using the old-style call. Use AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION in the new form only. Suggested by Pavel Roskin. --- ChangeLog | 7 +++++++ aclocal.m4 | 15 +++++++-------- configure | 7 ++++--- m4/init.m4 | 15 +++++++-------- 4 files changed, 25 insertions(+), 19 deletions(-) diff --git a/ChangeLog b/ChangeLog index c1ba5e812..cc6bb2caf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-01-12 Alexandre Duret-Lutz + + * m4/init.m4 (AM_INIT_AUTOMAKE): Set PACKAGE and VERSION from + AM_INIT_AUTOMAKE arguments when using the old-style call. + Use AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION in the new form only. + Suggested by Pavel Roskin. + 2002-01-12 Alexandre Duret-Lutz * test/nodefine.test, test/nodefine2.test: Check that no-define diff --git a/aclocal.m4 b/aclocal.m4 index d19358ead..a32dde047 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -69,16 +69,15 @@ if test "`cd $srcdir && pwd`" != "`pwd`" && AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi +# Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], - [m4_ifval([$3], [_AM_SET_OPTION([no-define])])], - [_AM_SET_OPTIONS([$1])])dnl - -# Define the identity of the package. -AC_SUBST([PACKAGE], -[m4_ifset([AC_PACKAGE_TARNAME], [AC_PACKAGE_TARNAME], [$1])])dnl -AC_SUBST([VERSION], -[m4_ifset([AC_PACKAGE_VERSION], [AC_PACKAGE_VERSION], [$2])])dnl + [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], + [_AM_SET_OPTIONS([$1]) + AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME]) + AC_SUBST([VERSION], [AC_PACKAGE_VERSION])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) diff --git a/configure b/configure index d0a00bc0f..eb469e130 100755 --- a/configure +++ b/configure @@ -1419,10 +1419,11 @@ echo "$as_me: error: source directory already configured; run \"make distclean\" { (exit 1); exit 1; }; } fi - # Define the identity of the package. -PACKAGE=automake -VERSION=1.5c + + PACKAGE=automake + + VERSION=1.5c cat >>confdefs.h <<_ACEOF diff --git a/m4/init.m4 b/m4/init.m4 index 32fbf7d67..2fe1a5b9f 100644 --- a/m4/init.m4 +++ b/m4/init.m4 @@ -56,16 +56,15 @@ if test "`cd $srcdir && pwd`" != "`pwd`" && AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi +# Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], - [m4_ifval([$3], [_AM_SET_OPTION([no-define])])], - [_AM_SET_OPTIONS([$1])])dnl - -# Define the identity of the package. -AC_SUBST([PACKAGE], -[m4_ifset([AC_PACKAGE_TARNAME], [AC_PACKAGE_TARNAME], [$1])])dnl -AC_SUBST([VERSION], -[m4_ifset([AC_PACKAGE_VERSION], [AC_PACKAGE_VERSION], [$2])])dnl +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl + AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME])dnl + AC_SUBST([VERSION], [AC_PACKAGE_VERSION])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) -- 2.47.2