diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-24 09:12:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-24 09:12:27 +0100 |
| commit | 41e23ec653a771f76f8c2c8addb8724e7026f55a (patch) | |
| tree | 4ca2efa93646aa7b5749a1052382ee20f4bd8c3e /wscript | |
| parent | 490f2656edede9c0fdcf5d8bc17329822c648038 (diff) | |
Try to fix centos 6/7 build.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -300,9 +300,10 @@ def configure(conf): # libxmlsec if conf.options.static_xmlsec: - conf.env.STLIB_XMLSEC = ['xmlsec1'] if conf.check_cxx(lib='xmlsec1-openssl', mandatory=False): - conf.env.STLIB_XMLSEC.append('xmlsec1-openssl') + conf.env.STLIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1'] + else: + conf.env.STLIB_XMLSEC = ['xmlsec1'] else: conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1'] |
