Angus' patch: accept autoconf 2.58 as a supported version.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8101 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2003-11-18 10:41:57 +00:00
parent 025cb611e3
commit a8ba56dce0
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,16 @@
2003-11-18 Angus Leeming <leeming@lyx.org>
* autogen.sh: accept autoconf 2.58 as a supported version.
2003-10-24 André Pönitz <poenitz@gmx.net>
* lyxfunc.C:
* rowpainter.C:
* text.C:
* text3.C:
* lyxtext.h: set fills in fill(...) instead of returning it
2003-10-06 Lars Gullik Bjønnes <larsbj@gullik.net>
* INSTALL: remove a comment about --with-included-string

View File

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