diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 11:22:36 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:24 +1100 |
commit | 7cba3cfac8781061e4114573517b30baedbf891a (patch) | |
tree | 35470bb962d34fe5380f02f7124cf603fb097466 /lib | |
parent | 1d8733537e47439f8d79cd78d278eace1b795df3 (diff) | |
download | samba-7cba3cfac8781061e4114573517b30baedbf891a.tar.gz samba-7cba3cfac8781061e4114573517b30baedbf891a.tar.bz2 samba-7cba3cfac8781061e4114573517b30baedbf891a.zip |
waf: replace the is_bundled option with private_library
'private_library' better captures what we are trying to get at when we
bundle a library
Diffstat (limited to 'lib')
-rw-r--r-- | lib/talloc/wscript | 4 | ||||
-rw-r--r-- | lib/tdb/wscript | 2 | ||||
-rw-r--r-- | lib/tevent/wscript | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 9550ea4cc6..bdf21a347b 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -61,7 +61,7 @@ def build(bld): abi_match='talloc* _talloc*', hide_symbols=True, vnum=VERSION, - is_bundled=not bld.env.standalone_talloc, + private_library=not bld.env.standalone_talloc, manpages='talloc.3') # should we also install the symlink to libtalloc1.so here? @@ -70,7 +70,7 @@ def build(bld): deps='talloc', enabled = bld.env.TALLOC_COMPAT1, vnum=VERSION, - is_bundled=not bld.env.standalone_talloc) + private_library=not bld.env.standalone_talloc) if not getattr(bld.env, '_SAMBA_BUILD_', 0) == 4: # s4 already has the talloc testsuite builtin to smbtorture diff --git a/lib/tdb/wscript b/lib/tdb/wscript index 340aebd591..5c2ecafd72 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -71,7 +71,7 @@ def build(bld): abi_match='tdb_*', hide_symbols=True, vnum=VERSION, - is_bundled=not bld.env.standalone_tdb) + private_library=not bld.env.standalone_tdb) bld.SAMBA_BINARY('tdbtorture', 'tools/tdbtorture.c', diff --git a/lib/tevent/wscript b/lib/tevent/wscript index 677ab8c75a..43d23e54c4 100644 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -74,7 +74,7 @@ def build(bld): abi_file='ABI/tevent-%s.sigs' % VERSION, abi_match='tevent_* _tevent_*', vnum=VERSION, - is_bundled=not bld.env.standalone_tevent) + private_library=not bld.env.standalone_tevent) if bld.env.standalone_tevent: bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig' |