updated for version 7.3.948
Problem: Cannot build with Python 2.2
Solution: Make Python interface work with Python 2.2
Make 2.2 the first supported version. (ZyX)
diff --git a/src/configure.in b/src/configure.in
index 34a75b3..886c5f3 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -863,10 +863,10 @@
${vi_cv_path_python} -c 'import sys; print sys.version[:3]'`
]])
- dnl -- it must be at least version 1.4
- AC_MSG_CHECKING(Python is 1.4 or better)
+ dnl -- it must be at least version 2.2
+ AC_MSG_CHECKING(Python is 2.2 or better)
if ${vi_cv_path_python} -c \
- "import sys; sys.exit(${vi_cv_var_python_version} < 1.4)"
+ "import sys; sys.exit(${vi_cv_var_python_version} < 2.2)"
then
AC_MSG_RESULT(yep)