require automake 1.9

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10685 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2005-12-28 10:47:00 +00:00
parent 2f5de1ff97
commit 1a0a8cdea2
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-12-28 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* autogen.sh: require automake 1.9
* configure.ac: add 1.9 to automake options
2005-12-23 Lars Gullik Bjonnes <larsbj@lyx.org>
* configure.ac: pre3

View File

@ -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

View File

@ -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