From 931e107af432573a7ce70b625b57a332471363a0 Mon Sep 17 00:00:00 2001 From: Justin Seyster Date: Tue, 12 Apr 2011 19:45:37 -0400 Subject: [PATCH] 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. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" != :]) -- 2.34.1