diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-16 14:22:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-16 14:22:23 +0100 |
| commit | ad416ecd42e5cf8792fc36d4e4d16271639dd9c3 (patch) | |
| tree | 2c781e912a145846cf657978352822733b377686 /wscript | |
| parent | 14d422b35d83856ad53c84df13509865f3584331 (diff) | |
Missing static build libraries.fix
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |
