From 1a0a8cdea2521c1351e1c7e85e17c451f2063456 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Wed, 28 Dec 2005 10:47:00 +0000 Subject: [PATCH] require automake 1.9 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10685 a592a061-630c-0410-9148-cb99ea01b6c8 --- ChangeLog | 5 +++++ autogen.sh | 6 +++--- configure.ac | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7783f6bfec..7312135c61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-28 Georg Baum + + * autogen.sh: require automake 1.9 + * configure.ac: add 1.9 to automake options + 2005-12-23 Lars Gullik Bjonnes * configure.ac: pre3 diff --git a/autogen.sh b/autogen.sh index c94a14dc63..be24ca23f2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -12,17 +12,17 @@ automake_version=`$AUTOMAKE --version 2>/dev/null | head -n 1` test "$automake_version" != "" && { echo "Using $automake_version" } || { - echo "LyX requires automake >= 1.5" + echo "LyX requires automake >= 1.9" exit 1 } case $automake_version in - *' '1.[5-9]*) + *' '1.9*) ;; *) echo "This automake version is not supported by LyX." - echo "LyX only supports automake 1.[5-9]." + echo "LyX only supports automake 1.9." exit 1 ;; esac diff --git a/configure.ac b/configure.ac index 9d1b057383..44e36a56e2 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ if test "${enable_maintainer_mode+set}" != set; then fi AM_MAINTAINER_MODE -AM_INIT_AUTOMAKE([foreign dist-bzip2 tar-ustar]) +AM_INIT_AUTOMAKE([foreign dist-bzip2 tar-ustar 1.9]) ### Set the execute permissions of the various scripts correctly for file in config/install-sh config/mkinstalldirs lib/configure ; do