summaryrefslogtreecommitdiff
path: root/examples/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-09 20:37:18 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-10 00:07:51 +0100
commita65f6872b5f085347d8be99c7efbe98dcc45065a (patch)
tree364f501674f092a33172b3d6eefef8257f84947e /examples/wscript
parentbda260b28585d2bfda787d54916013395c4a2abb (diff)
Remove now-unused boost regex.xerces
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 46ee6c5a..a71a215b 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 BOOST_REGEX'
+ obj.uselib = 'OPENJPEG CXML OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM'
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 BOOST_REGEX'
+ obj.uselib = 'OPENJPEG CXML MAGICK OPENMP ASDCPLIB_CTH BOOST_FILESYSTEM'
obj.source = 'read_dcp.cc'
obj.target = 'read_dcp'
obj.install_path = ''