From 1c6d89660ea6687df55248e1f45699e59562792a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 10 Jan 2011 10:06:37 +0100 Subject: [PATCH] m4: Don't AC_MSG_ERROR when too old python is found MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This broke the pure S3 build with an old python Matthias Dieter Wallnöfer, please check! Autobuild-User: Volker Lendecke Autobuild-Date: Mon Jan 10 11:26:18 CET 2011 on sn-devel-104 --- m4/check_python.m4 | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/m4/check_python.m4 b/m4/check_python.m4 index 8ca0ead1898..9d0524a8e85 100644 --- a/m4/check_python.m4 +++ b/m4/check_python.m4 @@ -76,11 +76,6 @@ 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(), \ @@ -95,6 +90,12 @@ AC_DEFUN([AC_SAMBA_PYTHON_DEVEL], sysconfig.get_config_var('LDFLAGS'), \ sysconfig.get_config_var('LIBPL'))"` TRY_LINK_PYTHON($DISTUTILS_LDFLAGS, $DISTUTILS_CFLAGS) + + if `$PYTHON -c "import sys; sys.exit(sys.version_info.__getslice__(0, 2) >= (2, 4))"` + then + AC_MSG_WARN([Python ($PYTHON) is too old. At least version 2.4 is required]) + working_python=no + fi fi AC_MSG_CHECKING(working python module support) -- 2.34.1