Missing static build libraries. fix
authorCarl Hetherington <cth@carlh.net>
Sat, 16 Jan 2021 13:22:23 +0000 (14:22 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 16 Jan 2021 13:22:23 +0000 (14:22 +0100)
wscript

diff --git a/wscript b/wscript
index 9219f1293aa2380b46cf22ea08708745b3f4a278..2bbae8345fe33ab9095b835d57880b0f36ce1bf5 100644 (file)
--- a/wscript
+++ b/wscript
@@ -112,8 +112,8 @@ def configure(conf):
     if conf.options.static:
         conf.check_cfg(package='libdcp-1.0', atleast_version='1.6.2', args='--cflags', uselib_store='DCP', mandatory=True)
         conf.env.HAVE_DCP = 1
-        conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-carl', 'kumu-carl', 'openjp2']
-        conf.env.LIB_DCP = ['ssl', 'crypto', 'xmlsec1-openssl', 'xmlsec1']
+        conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-carl', 'kumu-carl', 'openjp2', 'cxml']
+        conf.env.LIB_DCP = ['ssl', 'crypto', 'xmlsec1-openssl', 'xmlsec1', 'glibmm-2.4', 'xml++-2.6']
     else:
         conf.check_cfg(package='libdcp-1.0', atleast_version='1.6.2', args='--cflags --libs', uselib_store='DCP', mandatory=True)