mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
Fix merged build .
This commit is contained in:
parent
ecc108ccb0
commit
ecca199486
@ -6220,7 +6220,7 @@ fi
|
||||
|
||||
AC_ARG_ENABLE(merged-build,
|
||||
[AS_HELP_STRING([--enable-merged-build], [Build Samba 4 as well])],
|
||||
[], [ enable_merged_build=auto ])
|
||||
[ enable_merged_build=$enableval ], [ enable_merged_build=auto ])
|
||||
|
||||
if test x$enable_merged_build = xauto; then
|
||||
merged_build_possible=yes
|
||||
|
@ -1,33 +1 @@
|
||||
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)
|
||||
SMB_ENABLE(swig_ldb, NO)
|
||||
fi
|
||||
|
||||
AC_SUBST(PYTHON)
|
||||
|
@ -3,6 +3,26 @@ AC_SUBST(BLDSHARED)
|
||||
smbtorture4_path=bin/smbtorture4
|
||||
m4_include(build/m4/public.m4)
|
||||
|
||||
m4_include(build/m4/check_python.m4)
|
||||
|
||||
m4_include(build/m4/ac_pkg_swig.m4)
|
||||
|
||||
AC_PROG_SWIG(1.3.36)
|
||||
|
||||
AC_SAMBA_PYTHON_DEVEL([
|
||||
SMB_EXT_LIB(EXT_LIB_PYTHON, [$PYTHON_LDFLAGS], [$PYTHON_CFLAGS])
|
||||
SMB_ENABLE(EXT_LIB_PYTHON,YES)
|
||||
SMB_ENABLE(LIBPYTHON,YES)
|
||||
],[
|
||||
AC_MSG_ERROR([Python not found. Please install Python 2.x and its development headers/libraries.])
|
||||
])
|
||||
|
||||
AC_MSG_CHECKING(python library directory)
|
||||
pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1, 0, '\\${prefix}')"`
|
||||
AC_MSG_RESULT($pythondir)
|
||||
|
||||
AC_SUBST(pythondir)
|
||||
|
||||
m4_include(lib/smbreadline/readline.m4)
|
||||
m4_include(heimdal_build/internal.m4)
|
||||
m4_include(../lib/util/fault.m4)
|
||||
|
@ -77,7 +77,6 @@ m4_include(build/m4/check_python.m4)
|
||||
|
||||
m4_include(build/m4/ac_pkg_swig.m4)
|
||||
|
||||
|
||||
AC_PROG_SWIG(1.3.36)
|
||||
|
||||
AC_SAMBA_PYTHON_DEVEL([
|
||||
|
Loading…
Reference in New Issue
Block a user