Requires Python >= 2.6 for test cases.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Tue, 12 Apr 2011 23:45:37 +0000 (19:45 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Tue, 12 Apr 2011 23:45:37 +0000 (19:45 -0400)
Older versions of Python are missing some of the syntax I used in the
test script.

Why does CentOS still use Python 2.4?  It's almost half a decade old.

configure.in

index b43ad113274ea4e9b94dd51856a5369a50f30e20..bfe896874d8f2bcfeef4afb872e43a87f7b48293 100644 (file)
@@ -22,9 +22,9 @@ AC_PROG_LIBTOOL
 AX_GCC_PLUGIN
 
 # Python for test cases
-AM_PATH_PYTHON([2.0],
+AM_PATH_PYTHON([2.6],
        , # Do nothing if Python is found.
-       AC_MSG_WARN([Could not find Python binary.  Python 2.0 or newer is
+       AC_MSG_WARN([Could not find Python binary.  Python 2.6 or newer is
        required for test cases.  Running make check will be disabled.]))
 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])