summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-10-03 22:32:51 +0200
committerCarl Hetherington <cth@carlh.net>2021-10-03 22:32:51 +0200
commitc1d869a515753264031ab7c852ab1a05ca2421ba (patch)
tree1d1b3db5d355173e0e1447b7b447bd0b3c3df5a9
parentd5a23469a72d4ed995394e8da9768a23859dc43c (diff)
Require libsub v1.6.0.
-rw-r--r--cscript2
-rw-r--r--wscript4
2 files changed, 3 insertions, 3 deletions
diff --git a/cscript b/cscript
index 0f205c086..e864a294f 100644
--- a/cscript
+++ b/cscript
@@ -432,7 +432,7 @@ def dependencies(target, options):
deps = []
deps.append(('libdcp', 'v1.8.0'))
- deps.append(('libsub', '587e475'))
+ deps.append(('libsub', 'v1.6.0'))
deps.append(('leqm-nrt', '93ae9e6'))
deps.append(('rtaudio', 'f619b76'))
# We get our OpenSSL libraries from the environment, but we
diff --git a/wscript b/wscript
index 7eb247da0..be944e817 100644
--- a/wscript
+++ b/wscript
@@ -312,11 +312,11 @@ def configure(conf):
# libsub
if conf.options.static_sub:
- conf.check_cfg(package='libsub-1.0', atleast_version='1.4.7', args='--cflags', uselib_store='SUB', mandatory=True)
+ conf.check_cfg(package='libsub-1.0', atleast_version='1.6.0', args='--cflags', uselib_store='SUB', mandatory=True)
conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
conf.env.STLIB_SUB = ['sub-1.0']
else:
- conf.check_cfg(package='libsub-1.0', atleast_version='1.4.7', args='--cflags --libs', uselib_store='SUB', mandatory=True)
+ conf.check_cfg(package='libsub-1.0', atleast_version='1.6.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
# libxml++