From 948bf1f3b15236a833d9bca3105f5f788f22ac1c Mon Sep 17 00:00:00 2001 From: Ionut Biru Date: Tue, 26 Apr 2011 09:04:14 -0700 Subject: [PATCH] check for python2.6 and python2.7 add more binaries to check for python 2.6 and python 2.7 Signed-off-by: Ionut Biru --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index e257e2a..814dade 100644 --- a/configure.ac +++ b/configure.ac @@ -103,7 +103,7 @@ if test -z "$XSLTPROC"; then AC_MSG_ERROR([xsltproc (from the libxslt source package) is required]) fi PYTHON= -AC_CHECK_PROGS([PYTHON], [python2.3 python2.4 python2.5 python]) +AC_CHECK_PROGS([PYTHON], [python2.3 python2.4 python2.5 python2.6 python2.7 python]) if test -z "$PYTHON"; then AC_MSG_ERROR([Python is required to compile this package]) fi -- 1.7.4.4