summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/summary.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-03-20 15:34:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:58:53 -0500
commit61ec62fb2757253a509b57b3e7815c1fb6d0a94b (patch)
tree83a91f5ff0d9cb9e1d0c1a530fe942cf9950bc25 /source4/build/smb_build/summary.pm
parent9ef4e90539c6d262a5fbc36bdde2c8355be3aa56 (diff)
downloadsamba-61ec62fb2757253a509b57b3e7815c1fb6d0a94b.tar.gz
samba-61ec62fb2757253a509b57b3e7815c1fb6d0a94b.tar.bz2
samba-61ec62fb2757253a509b57b3e7815c1fb6d0a94b.zip
r14583: Enable automatic dependencies only if GNU make >= 3.81 is present.
(This used to be commit 2b22f1853306625a4c59763ef11965ac8900d4ff)
Diffstat (limited to 'source4/build/smb_build/summary.pm')
-rw-r--r--source4/build/smb_build/summary.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/build/smb_build/summary.pm b/source4/build/smb_build/summary.pm
index 95a342e2f9..b9ba1e96be 100644
--- a/source4/build/smb_build/summary.pm
+++ b/source4/build/smb_build/summary.pm
@@ -41,6 +41,15 @@ sub show($$)
showitem($output, "using libblkid", ["BLKID"]);
showitem($output, "using pam", ["PAM"]);
print "Using external popt: ".lc($output->{EXT_LIB_POPT}->{ENABLE})."\n";
+ print "Developer mode: ".lc($config->{developer})."\n";
+ print "Automatic dependencies: ";
+
+ if ($config->{automatic_dependencies} eq "yes") {
+ print "yes\n";
+ } else {
+ print "no (install GNU make >= 3.81)\n";
+ }
+
print "Using shared libraries internally (experimental): ";
if ($config->{BLDSHARED} eq "true") {