From 96247e80599de45a2454641eba3daf6a5cdadd50 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sat, 8 Apr 2006 01:52:09 +0000 Subject: r14970: Add configure stuff for Python to tdb and ldb standalone builds. (This used to be commit 5e14e79489c67d55df20ef78ebf0aa168a5dc456) --- source4/lib/ldb/config.m4 | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'source4/lib/ldb/config.m4') diff --git a/source4/lib/ldb/config.m4 b/source4/lib/ldb/config.m4 index df2075d4e3..c8603b079f 100644 --- a/source4/lib/ldb/config.m4 +++ b/source4/lib/ldb/config.m4 @@ -1 +1,32 @@ SMB_ENABLE(ldb_sqlite3,$with_sqlite3_support) + +AC_MSG_CHECKING([for Python]) + +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) +fi + +AC_SUBST(PYTHON) -- cgit