we require at least autoconf 2.59c (objc support for mac os x)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26116 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2008-08-11 21:46:38 +00:00
parent 8c6ba1dd6c
commit 9bda5aa44d
2 changed files with 5 additions and 4 deletions

View File

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

View File

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