summaryrefslogtreecommitdiff
path: root/examples/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-14 22:57:31 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-14 22:57:31 +0100
commitb77520ba1d42fba40f8a2252414e99f3cc0e7081 (patch)
tree9eb1ac903b2f6b2bb61d92cd2275ceb3395b0af3 /examples/wscript
parente0a5800a2603db542d7189ae433e4e5d923f2831 (diff)
xerces-related build fixes.
Diffstat (limited to 'examples/wscript')
-rw-r--r--examples/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/wscript b/examples/wscript
index a71a215b..f7d3431a 100644
--- a/examples/wscript
+++ b/examples/wscript
@@ -20,7 +20,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'make_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM'
+ obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM OPENSSL XMLSEC1'
obj.source = 'make_dcp.cc'
obj.target = 'make_dcp'
obj.install_path = ''
@@ -28,7 +28,7 @@ def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'read_dcp'
obj.use = 'libdcp%s' % bld.env.API_VERSION
- obj.uselib = 'OPENJPEG CXML MAGICK OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM'
+ obj.uselib = 'OPENJPEG CXML MAGICK OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM OPENSSL XMLSEC1'
obj.source = 'read_dcp.cc'
obj.target = 'read_dcp'
obj.install_path = ''