Browse Source

Fix build under mixed mode

Closes #508
tags/v1.9.14^2
falkTX 5 years ago
parent
commit
0fefdf8b6c
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      wscript

+ 7
- 0
wscript View File

@@ -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()


Loading…
Cancel
Save