diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 22:39:19 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 22:39:19 +0200 |
commit | 009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2 (patch) | |
tree | b3b07360fa72d461a993137bc23f3c34a6ecc6ad /source3/configure.in | |
parent | 79f1ba875471f797218a0fbc76cbf06b0a862cf8 (diff) | |
download | samba-009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2.tar.gz samba-009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2.tar.bz2 samba-009dcbf477aa4b0529a2c9d9bc8b38d84732f0a2.zip |
Give the user a hint about whether a merged build would be possible.
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 21 |
1 files changed, 21 insertions, 0 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) |