|
Line 0
Link Here
|
|
|
1 |
--- configure.in.orig 2014-01-15 16:44:15.000000000 -0800 |
| 2 |
+++ configure.in 2014-07-15 08:54:27.139642717 -0700 |
| 3 |
@@ -1082,7 +1082,7 @@ |
| 4 |
AC_CHECK_PROG(PYTHON,python,python) |
| 5 |
HAVE_PYTHON=no |
| 6 |
if test x"$PYTHON" != x; then |
| 7 |
- # k5test.py requires python 2.4 (for the subprocess module). |
| 8 |
+ # k5test.py requires python 2.7 (for the subprocess module). |
| 9 |
vercheck="import sys;sys.exit((sys.hexversion < 0x2040000) and 1 or 0)" |
| 10 |
if python -c "$vercheck"; then |
| 11 |
HAVE_PYTHON=yes |
| 12 |
@@ -1206,9 +1206,8 @@ |
| 13 |
# default, so it's not a big deal that it isn't very good. We should |
| 14 |
# use python-config instead. |
| 15 |
PYTHON_LIB= |
| 16 |
-AC_CHECK_HEADERS(Python.h python2.3/Python.h python2.5/Python.h) |
| 17 |
-AC_CHECK_LIB(python2.3,main,[PYTHON_LIB=-lpython2.3], |
| 18 |
- AC_CHECK_LIB(python2.5,main,[PYTHON_LIB=-lpython2.5])) |
| 19 |
+AC_CHECK_HEADERS(Python.h python2.7/Python.h) |
| 20 |
+AC_CHECK_LIB(python2.7,main,[PYTHON_LIB=-lpython2.7]) |
| 21 |
AC_SUBST(PYTHON_LIB) |
| 22 |
|
| 23 |
|