summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-14 22:39:19 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-14 22:39:19 +0200
commit009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2 (patch)
treeb3b07360fa72d461a993137bc23f3c34a6ecc6ad
parent79f1ba875471f797218a0fbc76cbf06b0a862cf8 (diff)
downloadsamba-009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2.tar.gz
samba-009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2.tar.bz2
samba-009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2.zip
Give the user a hint about whether a merged build would be possible.
-rw-r--r--source3/configure.in21
-rw-r--r--source3/samba4.m41
2 files changed, 21 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 55a6926186..7d05b63122 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -6222,6 +6222,27 @@ AC_ARG_ENABLE(merged-build,
[AS_HELP_STRING([--enable-merged-build], [Build Samba 4 as well])],
[], [ enable_merged_build=auto ])
+if test x$enable_merged_build = xauto; then
+ merged_build_possible=yes
+
+ # Check for GNU make
+ m4_include(../source4/build/m4/check_make.m4)
+ AC_SAMBA_GNU_MAKE([true], [merged_build_possible=no])
+
+ # Check for perl
+ m4_include(../source4/build/m4/check_perl.m4)
+ AC_SAMBA_PERL([true], [merged_build_possible=no])
+
+ # Check for python
+ m4_include(../source4/build/m4/check_python.m4)
+ AC_SAMBA_PYTHON_DEVEL([true], [merged_build_possible=no])
+
+ AC_MSG_CHECKING([whether it would be possible to do a merged build])
+ AC_MSG_RESULT([$merged_build_possible])
+
+ dnl FIXME: enable_merged_build=$merged_build_possible
+fi
+
if test x$enable_merged_build = xyes; then
MERGED_BUILD=1
m4_include(samba4.m4)
diff --git a/source3/samba4.m4 b/source3/samba4.m4
index 9cf01507de..2f932689e1 100644
--- a/source3/samba4.m4
+++ b/source3/samba4.m4
@@ -87,7 +87,6 @@ eventsdir="../source4/lib/events"
m4_include(lib/events/libevents.m4)
dnl m4_include(auth/kerberos/config.m4)
-m4_include(scripting/python/config.m4)
m4_include(auth/gensec/config.m4)
m4_include(smbd/process_model.m4)
m4_include(ntvfs/posix/config.m4)