From: Matthias Dieter Wallnöfer Date: Tue, 9 Feb 2010 16:48:44 +0000 (+0100) Subject: check_python.m4 - Raise the minimum python version up to 2.4 X-Git-Tag: samba-3.6.0pre1~5493 X-Git-Url: http://git.samba.org/samba.git/?p=gd%2Fsamba-autobuild%2F.git;a=commitdiff_plain;h=45cbf49477b963bd39a57bac0682f36acbc9f6b3 check_python.m4 - Raise the minimum python version up to 2.4 This is needed since we at the s4 side have some code which requires this. I think everybody should be fine since we got no complaints on the mailing list about this change. Patch template: Jelmer Vernooij --- diff --git a/m4/check_python.m4 b/m4/check_python.m4 index 15f04afb4bd..8ca0ead1898 100644 --- a/m4/check_python.m4 +++ b/m4/check_python.m4 @@ -76,6 +76,11 @@ AC_DEFUN([AC_SAMBA_PYTHON_DEVEL], if test x$PYTHON != x then + if `$PYTHON -c "import sys; sys.exit(sys.version_info.__getslice__(0, 2) >= (2, 4))"` + then + AC_MSG_ERROR([Python ($PYTHON) is too old. At least version 2.4 is required]) + fi + DISTUTILS_CFLAGS=`$PYTHON -c "from distutils import sysconfig; \ print '-I%s -I%s %s' % ( \ sysconfig.get_python_inc(), \