summaryrefslogtreecommitdiff
path: root/libgpo
diff options
context:
space:
mode:
authorSean Finney <seanius@seanius.net>2011-05-20 08:12:08 +0000
committerMatthias Dieter Wallnöfer <mdw@samba.org>2011-05-25 19:22:13 +0200
commit0f8018676a6cb33238d506338d4fbb8b683550d3 (patch)
tree1e2dc4bb4a4f3179ce795e417bbd48f4474e7dd7 /libgpo
parentb58534f1fca27e3e72f4f4107538ec05734bd42a (diff)
downloadsamba-0f8018676a6cb33238d506338d4fbb8b683550d3.tar.gz
samba-0f8018676a6cb33238d506338d4fbb8b683550d3.tar.bz2
samba-0f8018676a6cb33238d506338d4fbb8b683550d3.zip
Fix numerous missing dependencies in WAF build scripts
With the recent consolidation of code between s3 and s4, a number of new dependencies have been implicitly introduced. For example, previous s3 code gained an implicit dependency on talloc after the charset related consolidation (lib/util/charset/charset.h now includes talloc.h). When building against the embedded version of talloc this isn't a problem since the paths are automatically added to the search path, but when building against the external libraries build failures will occur for all components that don't directly or indirectly include talloc as a dependency. Since charset.h is included from util.h, which in turn is included from includes.h, this means most of the codebase (s3 and s4) has such an undeclared dependency. Therefore, samba-util-common and samba-util have been added as dependencies to the s3 and s4 code respectively, for all cases where the source would otherwise fail to build. Additionally, a few other dependencies are added in specific wscript_build files to address similar dependency-related problems. https://bugzilla.samba.org/show_bug.cgi?id=8128 Signed-off-by: Sean Finney <seanius@seanius.net> Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Wed May 25 19:22:13 CEST 2011 on sn-devel-104
Diffstat (limited to 'libgpo')
-rw-r--r--libgpo/wscript_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgpo/wscript_build b/libgpo/wscript_build
index e2422c566b..f182b44df0 100644
--- a/libgpo/wscript_build
+++ b/libgpo/wscript_build
@@ -2,7 +2,7 @@
bld.SAMBA_SUBSYSTEM('LIBGPO',
source='gpo_util.c gpo_sec.c ../libgpo/gpext/gpext.c gpo_fetch.c gpo_ini.c ../source4/libgpo/ads_convenience.c ../source3/libgpo/gpo_filesync.c ../source4/libgpo/gpo_filesync.c',
- deps='ldb samba-net',
+ deps='ldb samba-net samba-util',
enabled=False
)