fix python check to use sys.version_info rather than parsing sys.version
authorDavid I. Lehn <dlehn@users.sourceforge.net>
Sun, 13 Oct 2002 00:05:10 +0000 (00:05 +0000)
committerDavid I. Lehn <dlehn@users.sourceforge.net>
Sun, 13 Oct 2002 00:05:10 +0000 (00:05 +0000)
Original commit message from CVS:
fix python check to use sys.version_info rather than parsing sys.version

m4/as-python.m4

index 349855230d767c5ad7c9b4a6125a41c7c0eb7935..e7c5a800d7c21043c08ad7213b226b70ba4d2269 100644 (file)
@@ -49,12 +49,10 @@ AC_DEFUN([AS_PATH_PYTHON],
     prog="
 import sys, string
 minver = '$1'
-pyver = string.split(sys.version)[0]  # first word is version string
-# split strings by '.' and convert to numeric
-minver = map(string.atoi, string.split(minver, '.'))
-pyver = map(string.atoi, string.split(pyver, '.'))
+# split string by '.' and convert to numeric
+minver_info = map(string.atoi, string.split(minver, '.'))
 # we can now do comparisons on the two lists:
-if pyver >= minver:
+if sys.version_info >= tuple(minver_info):
        sys.exit(0)
 else:
        sys.exit(1)"