diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-28 15:42:28 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:12 +1000 |
commit | c2d17cf978cb2d5275b2915fb0a87daa79acc28b (patch) | |
tree | 5423ac464e696853c9d74195a38f0647dd7ac901 /source4/lib | |
parent | 3b380ea7ac9f33f208a9479d34bd514f8e3d5bf4 (diff) | |
download | samba-c2d17cf978cb2d5275b2915fb0a87daa79acc28b.tar.gz samba-c2d17cf978cb2d5275b2915fb0a87daa79acc28b.tar.bz2 samba-c2d17cf978cb2d5275b2915fb0a87daa79acc28b.zip |
s4-waf: set default for bundled libraries
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 2cde5ee36a..ad875374db 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -13,12 +13,12 @@ LIBTDB_DIR= srcdir + '/lib/tdb' LIBTEVENT_DIR= srcdir + '/lib/tevent' def set_options(opt): + opt.BUILTIN_DEFAULT('replace') + opt.BUNDLED_EXTENSION_DEFAULT('ldb', noextenion='ldb') opt.recurse(LIBTDB_DIR) opt.recurse(LIBTEVENT_DIR) def configure(conf): - conf.BUNDLED_LIBRARY_EXTENSION('ldb') - conf.sub_config(LIBTDB_DIR) conf.sub_config(LIBTEVENT_DIR) # where does the default LIBDIR end up? in conf.env somewhere? |