From 1ebfef406498139870bfb4a5e3f748c063c0a92c Mon Sep 17 00:00:00 2001 From: tchernobog Date: Sun, 5 Feb 2006 14:01:19 +0000 Subject: [PATCH] - Lower the bar for the python version check: require >= 2.3 instead of >= 2.4 git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@291 3ecf2c5c-341e-0410-92b4-d18e462d057c --- configure.ac | 2 +- m4/ac_python_devel.m4 | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index c7aeedb..c795e29 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,7 @@ dnl make AC_PROG_MAKE_SET dnl check for python and SWIG -AC_PYTHON_DEVEL([>= '2.4']) +AC_PYTHON_DEVEL([>= '2.3']) AC_PROG_SWIG SWIG_ENABLE_CXX SWIG_PYTHON diff --git a/m4/ac_python_devel.m4 b/m4/ac_python_devel.m4 index 8989d8c..a851233 100644 --- a/m4/ac_python_devel.m4 +++ b/m4/ac_python_devel.m4 @@ -37,7 +37,9 @@ AC_DEFUN([AC_PYTHON_DEVEL],[ # Allow the use of a (user set) custom python version # AC_ARG_VAR([PYTHON_VERSION],[The installed Python - version to use, for example '2.3']) + version to use, for example '2.3'. This string + will be appended to the Python interpreter + canonical name.]) AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]]) if test -z "$PYTHON"; then