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-22 01:21:00 +0100
commit52c79bb908dcfbb8e4f075b728699fce466ecef1 (patch)
tree364f501674f092a33172b3d6eefef8257f84947e /examples/wscript
parentf2b5c16cb9faa6b924005c308c76eda9bdc2c074 (diff)
Remove now-unused boost regex.
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 = ''