Author: isaac
Date: Mon Apr 23 12:18:37 2007
New Revision: 16999

URL: http://svn.gna.org/viewcvs/wesnoth?rev=16999&view=rev
Log:
Check for python 2.4 instead of 2.3

Modified:
    trunk/configure.ac

Modified: trunk/configure.ac
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/configure.ac?rev=16999&r1=16998&r2=16999&view=diff
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Apr 23 12:18:37 2007
@@ -352,10 +352,10 @@
        PYTHON_VERSION="${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}"
        AC_MSG_RESULT([$PYTHON, $PYTHON_VERSION, $PYTHON_PREFIX])
 
-       AC_MSG_CHECKING(whether Python is at least 2.3)
-       if test $PYTHON_VERSION_MAJOR -lt 2 -o $PYTHON_VERSION_MAJOR -eq 2 -a 
$PYTHON_VERSION_MINOR -lt 3; then
+       AC_MSG_CHECKING(whether Python is at least 2.4)
+       if test $PYTHON_VERSION_MAJOR -lt 2 -o $PYTHON_VERSION_MAJOR -eq 2 -a 
$PYTHON_VERSION_MINOR -lt 4; then
                AC_MSG_RESULT(no)
-               AC_ERROR(Wesnoth requires at least Python 2.3)
+               AC_ERROR(Wesnoth requires at least Python 2.4)
        fi
        AC_MSG_RESULT(yes)
 


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to