From 523c3d002dace8b25df82a23890090306277fab3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 15 Aug 2024 11:53:39 +0200 Subject: Fix --static-xmlsec option and use it for Centos 9 (#2858). --- wscript | 2 ++ 1 file changed, 2 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index d418ab6f4..83b69bd31 100644 --- a/wscript +++ b/wscript @@ -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'] -- cgit v1.2.3