summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wscript7
1 files changed, 7 insertions, 0 deletions
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()