]> git.lyx.org Git - lyx.git/commitdiff
we require at least autoconf 2.59c (objc support for mac os x)
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 11 Aug 2008 21:46:38 +0000 (21:46 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 11 Aug 2008 21:46:38 +0000 (21:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26116 a592a061-630c-0410-9148-cb99ea01b6c8

INSTALL
autogen.sh

diff --git a/INSTALL b/INSTALL
index c0123e178e57abe678fb988f60f527e67b652e5d..142ee9766fa9d2db9e12dc790932f86d94c3f988 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -32,7 +32,7 @@ Note for Subversion (SVN) checkouts
 
 If you have checked this out from Subversion, you need to have:
 * automake >= 1.5
-* autoconf >= 2.52
+* autoconf >= 2.59c
 * gettext >= 0.12
 Then type "./autogen.sh" to build the needed configuration
 files and proceed as stated below.
index 4350394d2a24c399d69135c142844dd770214f0a..43f9d7e213a91c8347733b166af81e3ef20d8298 100755 (executable)
@@ -32,16 +32,17 @@ autoversion=`$AUTOCONF --version 2>/dev/null | head -n 1`
 test "$autoversion" != "" && {
     echo "Using $autoversion"
 } || {
-    echo "LyX requires autoconf >= 2.52"
+    echo "LyX requires autoconf >= 2.59c"
     exit 1
 }
 
+
 case $autoversion in
-    *' '2.5[2-9]|*' '2.60[ab]|*' '2.6[0-2])
+    *' '2.59[cd]|*' '2.60[ab]|*' '2.6[0-2])
        ;;
     *)
        echo "This autoconf version is not supported by LyX."
-       echo "LyX only supports autoconf 2.52-2.61."
+       echo "LyX only supports autoconf 2.59c-2.61."
        exit 1
        ;;
 esac