remove check for python >= 2.2
authorDavid Schleef <ds@schleef.org>
Wed, 4 Jun 2003 20:27:25 +0000 (20:27 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 4 Jun 2003 20:27:25 +0000 (20:27 +0000)
configure.ac

index a8d0c9047a6d0048d396afb6b1d022269fbe0f0e..b5df9f7e7fa4044d47a0328dc056447e034beb36 100644 (file)
@@ -26,19 +26,6 @@ AC_SUBST(COMEDILIB_CFLAGS)
 AC_SUBST(COMEDILIB_LIBS)
 
 AM_PATH_PYTHON
-AC_MSG_CHECKING(for python >= 2.2)
-prog="
-import sys, string
-minver = (2,2,0,'final',0)
-if sys.version_info < minver:
-  sys.exit(1)
-sys.exit(0)"
-if $PYTHON -c "$prog" 2>&AC_FD_CC 2>&AC_FD_CC
-then
-  AC_MSG_RESULT(ok)
-else
-  AC_MSG_ERROR(too old)
-fi
 AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])