Enable the use of autoconf 2.59.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8373 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2004-01-26 20:28:59 +00:00
parent 7ea6f6e883
commit 7ffb8944e1
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-01-26 Angus Leeming <leeming@lyx.org>
* autogen.sh: enable the use of autoconf 2.59.
2004-01-08 Lars Gullik Bjonnes <larsbj@gullik.net>
* configure.ac (AC_CONFIG_FILES): add boost::filesystem Makefiles.

View File

@ -11,12 +11,12 @@ autoversion=`$AUTOCONF --version | head -n 1`
echo "Using $autoversion"
case $autoversion in
*2.5[234678])
*2.5[2-9])
EXTRA_ACINCLUDE_FILES="lyxinclude25x.m4"
;;
*)
echo "This autoconf version is not supported by LyX."
echo "LyX only supports autoconf 2.5[234678]."
echo "LyX only supports autoconf 2.5[2-9]."
exit
;;
esac