mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
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 <jelmer@samba.org>
This commit is contained in:
parent
04cf9b81eb
commit
45cbf49477
@ -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(), \
|
||||
|
Loading…
Reference in New Issue
Block a user