diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 23:25:12 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 23:25:12 +0200 |
commit | ecca199486a30957e7f0dc084d0e21eb3c812c15 (patch) | |
tree | ed264f6920c71356edcc40820a0011138c4f863e /source3/samba4.m4 | |
parent | ecc108ccb0e8dde06791f207cebd53f17cd06e55 (diff) | |
download | samba-ecca199486a30957e7f0dc084d0e21eb3c812c15.tar.gz samba-ecca199486a30957e7f0dc084d0e21eb3c812c15.tar.xz samba-ecca199486a30957e7f0dc084d0e21eb3c812c15.zip |
Fix merged build .
Diffstat (limited to 'source3/samba4.m4')
-rw-r--r-- | source3/samba4.m4 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/source3/samba4.m4 b/source3/samba4.m4 index 1bd9c38c29d..a5b7da7e071 100644 --- a/source3/samba4.m4 +++ b/source3/samba4.m4 @@ -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) |