diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-15 14:51:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-15 14:51:35 +0200 |
commit | 03db85b398746a252345ed8a7da69f0f2591e932 (patch) | |
tree | 7ed0344aa301a35ff620990e64264250182e06fd /src/configure.in | |
parent | b6c589a529bc8c5720477494696c6f69fe457475 (diff) | |
download | vim-git-03db85b398746a252345ed8a7da69f0f2591e932.tar.gz |
updated for version 7.3.948v7.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)
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configure.in b/src/configure.in index 34a75b3cd..886c5f3f4 100644 --- a/src/configure.in +++ b/src/configure.in @@ -863,10 +863,10 @@ if test "$enable_pythoninterp" = "yes" -o "$enable_pythoninterp" = "dynamic"; th ${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) |