summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/input.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-12-23 13:02:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:47:41 -0500
commit1ac5c35ed9bf5f557b8f42eee9c392af353430fe (patch)
tree7b80f946fc3ad04e8050d8398af21ac254f3b44a /source4/build/smb_build/input.pm
parent69a694d7ba3a8cd90445838e8a3f7d409e55fe24 (diff)
downloadsamba-1ac5c35ed9bf5f557b8f42eee9c392af353430fe.tar.gz
samba-1ac5c35ed9bf5f557b8f42eee9c392af353430fe.tar.bz2
samba-1ac5c35ed9bf5f557b8f42eee9c392af353430fe.zip
r12450: Move generation of proto and full object lists to makefile.pm. 'make' now
handles expanding the protoheader object list, rather then the build system, which makes the makefile quite a bit shorter. (This used to be commit a4088ccc704f1338c040c53596ff606cc1651d03)
Diffstat (limited to 'source4/build/smb_build/input.pm')
-rw-r--r--source4/build/smb_build/input.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm
index de558e709a..11a5eac1fb 100644
--- a/source4/build/smb_build/input.pm
+++ b/source4/build/smb_build/input.pm
@@ -132,6 +132,10 @@ sub check($$$$$)
my ($INPUT, $enabled, $subsys_ot, $lib_ot, $module_ot) = @_;
foreach my $part (values %$INPUT) {
+ unless(defined($part->{NOPROTO})) {
+ $part->{NOPROTO} = "NO";
+ }
+
if (defined($enabled->{$part->{NAME}})) {
$part->{ENABLE} = $enabled->{$part->{NAME}};
next;