From 0b673b79997365abddac49b51aacfd78b96b7ec2 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 2 May 2006 19:00:19 +0000 Subject: r15395: Fix build by adding another copy of the Python detection m4 fragment. This stuff should be common somewhere. (This used to be commit e906781cbd7a9d782e028fb0497de739ac6fb797) --- source4/libcli/config.m4 | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 source4/libcli/config.m4 (limited to 'source4/libcli') diff --git a/source4/libcli/config.m4 b/source4/libcli/config.m4 new file mode 100644 index 0000000000..3327c178c7 --- /dev/null +++ b/source4/libcli/config.m4 @@ -0,0 +1,31 @@ +AC_MSG_CHECKING([for Python (libcli_nbt)]) + +PYTHON= + +AC_ARG_WITH(python, +[ --with-python=PYTHONNAME build Python libraries], +[ case "${withval-python}" in + yes) + PYTHON=python + ;; + no) + PYTHON= + ;; + *) + PYTHON=${withval-python} + ;; + esac ]) + +if test x"$PYTHON" != "x"; then + incdir=`python -c 'import sys; print "%s/include/python%d.%d" % (sys.prefix, sys.version_info[[0]], sys.version_info[[1]])'` + CPPFLAGS="$CPPFLAGS -I $incdir" +fi + +if test x"$PYTHON" != "x"; then + AC_MSG_RESULT([${withval-python}]) +else + AC_MSG_RESULT(no) + SMB_ENABLE(swig_libli_nbt, NO) +fi + +AC_SUBST(PYTHON) -- cgit