From b3fb115a3932423267022152a04fa5cfcd059239 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 2 Feb 2012 11:36:49 +1030 Subject: tdb2: add --disable-tdb2 I thought you could --disable-tdb2=false, apparently not! Thanks Michael Adam... Signed-off-by: Rusty Russell Autobuild-User: Rusty Russell Autobuild-Date: Thu Feb 2 03:43:08 CET 2012 on sn-devel-104 --- lib/tdb2/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/tdb2/wscript') diff --git a/lib/tdb2/wscript b/lib/tdb2/wscript index 1211523460..e4fb62bd2a 100644 --- a/lib/tdb2/wscript +++ b/lib/tdb2/wscript @@ -24,6 +24,9 @@ def set_options(opt): opt.add_option('--enable-tdb2', help=("Use tdb2 API instead of tdb1 [True]"), action="store_true", dest='BUILD_TDB2', default=True) + opt.add_option('--disable-tdb2', + help=("Use old tdb1 API instead of tdb2"), + action="store_false", dest='BUILD_TDB2') if opt.IN_LAUNCH_DIR(): opt.add_option('--disable-python', help=("disable the pytdb module"), -- cgit