]> git.lyx.org Git - lyx.git/commitdiff
Angus' patch: accept autoconf 2.58 as a supported version.
authorAndré Pönitz <poenitz@gmx.net>
Tue, 18 Nov 2003 10:41:57 +0000 (10:41 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 18 Nov 2003 10:41:57 +0000 (10:41 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8101 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
autogen.sh

index d520d1ee5dbb6a9aed9d313699f426b732d3e561..57d9010fad17bec1b0b2579758fb6b9e30084886 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 5c67ca6689094843e5dabc3ddd7f3616805f763e..5265cc4f5c6cc033f9f33e2152d1282d6677c9f6 100755 (executable)
@@ -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