summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-22 00:28:22 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-22 00:28:22 +0000
commitf1a0edac50709ddf6fc1719dd4e1be8c760a8cc8 (patch)
treed4e5c64baa327cd7e961e9ba13fe26bccc313693 /wscript
parent194af222ed160811b19a9538d12208ce7b89fc4e (diff)
More libsub pkg-config fixes.
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index c990dc9b5..28ec37274 100644
--- a/wscript
+++ b/wscript
@@ -61,7 +61,7 @@ def dynamic_openjpeg(conf):
conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.2', mandatory=True)
def static_sub(conf):
- conf.check_cfg(package='libsub-1.0', atleast_version='0.01.0', args='--cflags', uselib_store='SUB', mandatory=True)
+ conf.check_cfg(package='libsub-1.0', atleast_version='1.0.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']
@@ -96,7 +96,7 @@ def dynamic_dcp(conf):
conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
def dynamic_sub(conf):
- conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
+ conf.check_cfg(package='libsub-1.0', atleast_version='1.0.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
def dynamic_ssh(conf):