summaryrefslogtreecommitdiff
path: root/source4/build/smb_build
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-26 14:15:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:05:01 -0500
commit6e847ca070aa1b15eb24966f8b9803e1982f2a83 (patch)
tree3400cdfa58a82a18bfc9967606ac97b88cd9f78a /source4/build/smb_build
parent061dfe14d99e90a44c2dbe53e29fc7a23407b2b2 (diff)
downloadsamba-6e847ca070aa1b15eb24966f8b9803e1982f2a83.tar.gz
samba-6e847ca070aa1b15eb24966f8b9803e1982f2a83.tar.bz2
samba-6e847ca070aa1b15eb24966f8b9803e1982f2a83.zip
r15279: Fix dependencies when using static libraries
(This used to be commit a9eb7b2b3cf46d19ab7dfab521e1259d653507f6)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r--source4/build/smb_build/TODO2
-rw-r--r--source4/build/smb_build/input.pm5
2 files changed, 3 insertions, 4 deletions
diff --git a/source4/build/smb_build/TODO b/source4/build/smb_build/TODO
index 2c4a913828..3ded826539 100644
--- a/source4/build/smb_build/TODO
+++ b/source4/build/smb_build/TODO
@@ -1,4 +1,6 @@
- let the build system implement some make functions($(patsubst),$(wildcard),...) and use our own implementations where `make' does not support them
+- change default subsystem/library build type to STATIC_LIBRARY
+ - fix order of UNIQUE_DEPENDENCIES
- make --enable-dso the default
- fix module loading for selftest during non-developer builds
- clearer distinction between dcerpc and ndr. seperate interface tables?
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm
index c153e0c95d..bb664f8635 100644
--- a/source4/build/smb_build/input.pm
+++ b/source4/build/smb_build/input.pm
@@ -132,7 +132,7 @@ sub calc_unique_deps($$$$)
next if defined($udeps->{$$dep->{NAME}});
if (defined ($$dep->{OUTPUT_TYPE}) &&
- ($withlibs or ($$dep->{OUTPUT_TYPE} eq "OBJ_LIST") or ($$dep->{OUTPUT_TYPE} eq "MERGEDOBJ"))) {
+ ($withlibs or ($$dep->{OUTPUT_TYPE} eq "OBJ_LIST") or ($$dep->{OUTPUT_TYPE} eq "MERGEDOBJ") or ($$dep->{OUTPUT_TYPE} eq "STATIC_LIBRARY"))) {
$udeps->{$$dep->{NAME}} = "BUSY";
calc_unique_deps($$dep->{NAME}, $$dep->{DEPENDENCIES}, $udeps, $withlibs);
}
@@ -203,9 +203,6 @@ sub check($$$$$)
die("$part->{NAME} has undefined dependency $key\n") if not defined($depend{$key});
push (@{$part->{DEPENDENCIES}}, \$depend{$key});
}
-
-# delete ($part->{PRIVATE_DEPENDENCIES});
-# delete ($part->{PUBLIC_DEPENDENCIES});
}
foreach my $part (values %depend) {