diff options
Diffstat (limited to 'source4/build/smb_build/summary.pm')
-rw-r--r-- | source4/build/smb_build/summary.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/build/smb_build/summary.pm b/source4/build/smb_build/summary.pm index 94da12fc91..de4ab43d24 100644 --- a/source4/build/smb_build/summary.pm +++ b/source4/build/smb_build/summary.pm @@ -56,10 +56,14 @@ sub show($$) ? "yes" : "no (install GNU make >= 3.81 and see --enable-automatic-dependencies)") . "\n"; - print "Using shared libraries: " . + print "Building shared libraries: " . (enabled($config->{BLDSHARED}) ? "yes" : "no (not supported on this system)") . "\n"; + print "Using shared libraries internally: " . + (enabled($config->{USESHARED}) + ? "yes" : "no (specify --enable-dso)") . + "\n"; print "\n"; } |