435f47b
--- configure.orig	2017-03-18 02:53:31.235204299 +0100
435f47b
+++ configure	2017-03-18 02:54:54.229053852 +0100
435f47b
@@ -13545,13 +13545,13 @@
435f47b
 
435f47b
         if test -n "$PYTHON"; then
435f47b
       # If the user set $PYTHON, use it and don't search something else.
435f47b
-      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 2.7" >&5
435f47b
-$as_echo_n "checking whether $PYTHON version is >= 2.7... " >&6; }
435f47b
+      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version is >= 2.4" >&5
435f47b
+$as_echo_n "checking whether $PYTHON version is >= 2.4... " >&6; }
435f47b
       prog="import sys
435f47b
 # split strings by '.' and convert to numeric.  Append some zeros
435f47b
 # because we need at least 4 digits for the hex conversion.
435f47b
 # map returns an iterator in Python 3.0 and a list in 2.x
435f47b
-minver = list(map(int, '2.7'.split('.'))) + [0, 0, 0]
435f47b
+minver = list(map(int, '2.4'.split('.'))) + [0, 0, 0]
435f47b
 minverhex = 0
435f47b
 # xrange is not present in Python 3.0 and range returns an iterator
435f47b
 for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i]
435f47b
@@ -13572,8 +13572,8 @@
435f47b
     else
435f47b
       # Otherwise, try each interpreter until we find one that satisfies
435f47b
       # VERSION.
435f47b
-      { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.7" >&5
435f47b
-$as_echo_n "checking for a Python interpreter with version >= 2.7... " >&6; }
435f47b
+      { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.4" >&5
435f47b
+$as_echo_n "checking for a Python interpreter with version >= 2.4... " >&6; }
435f47b
 if ${am_cv_pathless_PYTHON+:} false; then :
435f47b
   $as_echo_n "(cached) " >&6
435f47b
 else
435f47b
@@ -13584,7 +13584,7 @@
435f47b
 # split strings by '.' and convert to numeric.  Append some zeros
435f47b
 # because we need at least 4 digits for the hex conversion.
435f47b
 # map returns an iterator in Python 3.0 and a list in 2.x
435f47b
-minver = list(map(int, '2.7'.split('.'))) + [0, 0, 0]
435f47b
+minver = list(map(int, '2.4'.split('.'))) + [0, 0, 0]
435f47b
 minverhex = 0
435f47b
 # xrange is not present in Python 3.0 and range returns an iterator
435f47b
 for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i]
435f47b
@@ -13651,7 +13651,7 @@
435f47b
 
435f47b
   if test "$PYTHON" = :; then
435f47b
 
435f47b
-		as_fn_error $? "Python >= 2.7 is required." "$LINENO" 5
435f47b
+		as_fn_error $? "Python >= 2.4 is required." "$LINENO" 5
435f47b
 
435f47b
   else
435f47b
 
435f47b
@@ -13698,11 +13698,11 @@
435f47b
     can_use_sysconfig = 0
435f47b
 else:
435f47b
     can_use_sysconfig = 1
435f47b
-# Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs:
435f47b
+# Can't use sysconfig in CPython 2.4, since it's broken in virtualenvs:
435f47b
 # <https://github.com/pypa/virtualenv/issues/118>
435f47b
 try:
435f47b
     from platform import python_implementation
435f47b
-    if python_implementation() == 'CPython' and sys.version[:3] == '2.7':
435f47b
+    if python_implementation() == 'CPython' and sys.version[:3] == '2.4':
435f47b
         can_use_sysconfig = 0
435f47b
 except ImportError:
435f47b
     pass"