From 7c6713e78ff22ebf0aa1caa10697bad9d4cc885e Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 30 Jan 2012 15:59:18 +1030 Subject: tdb2: make --enable-tdb2 the default. We still use the tdb1 on-disk format, but we do so via the tdb2 library. Signed-off-by: Rusty Russell Autobuild-User: Rusty Russell Autobuild-Date: Mon Jan 30 08:02:43 CET 2012 on sn-devel-104 --- lib/tdb2/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tdb2/wscript b/lib/tdb2/wscript index eb5a7614d1..1211523460 100644 --- a/lib/tdb2/wscript +++ b/lib/tdb2/wscript @@ -22,8 +22,8 @@ def set_options(opt): opt.PRIVATE_EXTENSION_DEFAULT('tdb2', noextension='tdb2') opt.RECURSE('lib/replace') opt.add_option('--enable-tdb2', - help=("Use tdb2 API instead of tdb1 [False]"), - action="store_true", dest='BUILD_TDB2', default=False) + help=("Use tdb2 API instead of tdb1 [True]"), + action="store_true", dest='BUILD_TDB2', default=True) if opt.IN_LAUNCH_DIR(): opt.add_option('--disable-python', help=("disable the pytdb module"), -- cgit