diff options
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | wscript | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -574,6 +574,8 @@ def configure_options(target, options, for_package=False): opt += ' --static-boost --static-xmlpp' elif target.version == '7': opt += ' --workaround-gssapi' + elif target.version == 'stream9': + opt += ' --static-xmlsec' if not options['gui']: opt += ' --disable-gui' @@ -383,8 +383,10 @@ def configure(conf): if conf.options.static_xmlsec: if conf.check_cxx(lib='xmlsec1-openssl', mandatory=False): conf.env.STLIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1'] + conf.env.LIB_XMLSEC = ['ltdl'] else: conf.env.STLIB_XMLSEC = ['xmlsec1'] + conf.env.LIB_XMLSEC = ['ltdl'] else: conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1'] |
