From: Justin Seyster Date: Tue, 12 Apr 2011 23:45:37 +0000 (-0400) Subject: Requires Python >= 2.6 for test cases. X-Git-Tag: release-v1.1~10 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=931e107af432573a7ce70b625b57a332471363a0;p=interaspect.git Requires Python >= 2.6 for test cases. 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. --- diff --git a/configure.in b/configure.in index b43ad11..bfe8968 100644 --- a/configure.in +++ b/configure.in @@ -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" != :])