diff options
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | wscript | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -261,7 +261,7 @@ def configure_options(target): if target.version == '6.5': opt += ' --static-boost --static-xmlpp' elif target.version == '7': - opt += ' --workaround-gssapi' + opt += ' --workaround-gssapi --static-xmlpp' return opt @@ -239,6 +239,7 @@ def configure(conf): # libxml++ if conf.options.static_xmlpp: conf.env.STLIB_XMLPP = ['xml++-2.6'] + conf.env.LIB_XMLPP = ['xml2'] else: conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True) |
