diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-01-29 22:42:50 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-01-29 22:42:50 +0000 |
| commit | 808c589d0aedaa72a807cb4e628d2786140d0966 (patch) | |
| tree | fe64f0c2168c573c8ef275967f2af9c6d10734d7 | |
| parent | 5ffa9dfdd46038021acbd979eca1c0326ab86ab2 (diff) | |
Bump libsub to 1.3.6 to fix crash on malformed .srt (#1454).
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | wscript | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -331,7 +331,7 @@ def dependencies(target): return (('ffmpeg-cdist', '4bd8d09', ffmpeg_options), ('libdcp', 'v1.5.5'), - ('libsub', 'v1.3.5'), + ('libsub', 'v1.3.6'), ('rtaudio-cdist', '739969e')) def configure_options(target): @@ -363,11 +363,11 @@ def configure(conf): # libsub if conf.options.static_sub: - conf.check_cfg(package='libsub-1.0', atleast_version='1.3.3', args='--cflags', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.3.6', 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.3', args='--cflags --libs', uselib_store='SUB', mandatory=True) + conf.check_cfg(package='libsub-1.0', atleast_version='1.3.6', args='--cflags --libs', uselib_store='SUB', mandatory=True) conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB] # libxml++ |
