summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-22 00:22:26 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-22 00:22:26 +0000
commit194af222ed160811b19a9538d12208ce7b89fc4e (patch)
treec21ee63bdfb1d7be97ca44efa522e65791a83e21 /wscript
parent456967a554cc29fda50ef0c6267a3b823592f366 (diff)
Fix libsub pkg-config filename.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 1cd7b9d6f..c990dc9b5 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', atleast_version='0.01.0', args='--cflags', uselib_store='SUB', mandatory=True)
+ conf.check_cfg(package='libsub-1.0', atleast_version='0.01.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']