From 45cbf49477b963bd39a57bac0682f36acbc9f6b3 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Tue, 9 Feb 2010 17:48:44 +0100 Subject: 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 --- m4/check_python.m4 | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'm4') diff --git a/m4/check_python.m4 b/m4/check_python.m4 index 15f04afb4b..8ca0ead189 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(), \ -- cgit