From 9bf420dc955d7926bed28eb80580e3b881896b3c Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 28 Oct 2019 11:19:44 +0100 Subject: [PATCH] Fix build under mixed mode Closes #508 --- wscript | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wscript b/wscript index 55508fee..49e6d79b 100644 --- a/wscript +++ b/wscript @@ -397,6 +397,13 @@ def configure(conf): conf.env['LIBDIR'] = Options.options.libdir32 else: conf.env['LIBDIR'] = conf.env['PREFIX'] + '/lib32' + # libdb does not work in mixed mode + conf.env['HAVE_DB'] = 0 + conf.env['HAVE_DB_H'] = 0 + conf.env['LIB_DB'] = [] + # no need for opus in 32bit mixed mode clients + conf.env['LIB_OPUS'] = [] + # someone tell me where this file gets written please.. conf.write_config_header('config.h') print() -- 2.11.4.GIT