From 5193e04368732874f980f681c86e2051505c0171 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 3 Dec 2007 13:33:58 +0100 Subject: r26247: Don't allow use of older SWIG versions. (This used to be commit def0ae919b9b65e70124ee5bfcd70d3a22973a9b) --- source4/scripting/python/config.m4 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/scripting/python/config.m4') diff --git a/source4/scripting/python/config.m4 b/source4/scripting/python/config.m4 index bdc977b0ba..8a4aba4a66 100644 --- a/source4/scripting/python/config.m4 +++ b/source4/scripting/python/config.m4 @@ -1,9 +1,12 @@ +m4_include(scripting/python/ac_pkg_swig.m4) + AC_ARG_VAR([PYTHON_VERSION],[The installed Python version to use, for example '2.3'. This string will be appended to the Python interpreter canonical name.]) -AC_PATH_PROG(SWIG,swig,no) +AC_PROG_SWIG(1.3.25) + AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]]) if test -z "$PYTHON"; then working_python=no -- cgit