diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-10 14:13:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:56:55 -0500 |
commit | 1a49b255af46794903e240f17a483e91f343ae39 (patch) | |
tree | f8e43282abe0d7824db9bafdbb9d5c7073343941 /source4/build/smb_build/main.pl | |
parent | 701343865c2f8191fc8bfc8747c52cc5fe627e94 (diff) | |
download | samba-1a49b255af46794903e240f17a483e91f343ae39.tar.gz samba-1a49b255af46794903e240f17a483e91f343ae39.tar.bz2 samba-1a49b255af46794903e240f17a483e91f343ae39.zip |
r14151: Add simple script that writes a summary to show what libraries the user
(might) be missing.
(This used to be commit ee90b8067915915af8ffbc0e04d1f4f5aae567cb)
Diffstat (limited to 'source4/build/smb_build/main.pl')
-rw-r--r-- | source4/build/smb_build/main.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index 747118db33..130dd188c6 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -12,6 +12,7 @@ use smb_build::config_mk; use smb_build::output; use smb_build::env; use smb_build::cflags; +use smb_build::summary; use config; use strict; @@ -81,4 +82,6 @@ header::create_smb_build_h($OUTPUT, "include/build.h"); cflags::create_cflags($OUTPUT, "extra_cflags.txt"); +summary::show($OUTPUT, \%config::config); + 1; |