diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-05-14 23:49:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-05-14 23:49:39 +0100 |
| commit | d1fb02f47cdddddd82897b78269970281411ec2a (patch) | |
| tree | e46d2b778a1c7112f8b9b14353c16e41fb2c821b | |
| parent | d2b086ebd7333e80b77fb54ce04816b27dbf1cb6 (diff) | |
Fix libsub version slip.
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | wscript | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -304,7 +304,7 @@ def dependencies(target): return (('ffmpeg-cdist', '5fce90f', ffmpeg_options), ('libdcp', 'v1.5.3'), - ('libsub', 'v1.3.2'), + ('libsub', 'v1.3.3'), ('rtaudio-cdist', '739969e')) def configure_options(target): @@ -362,11 +362,11 @@ def configure(conf): # libsub if conf.options.static_sub: - conf.check_cfg(package='libsub-1.0', atleast_version='1.3.2', args='--cflags', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.3.3', 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.3.2', args='--cflags --libs', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.3.3', args='--cflags --libs', uselib_store='SUB', mandatory=True) conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB] # libxml++ |
