From ffbf2291d5c8d8e3a8e1fa98b029d66ddebcad31 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 19 Aug 2018 19:49:37 +0100 Subject: Try to peg Windows XP ffmpeg build to one derived from 3.4.2. --- cscript | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'cscript') diff --git a/cscript b/cscript index 436bd75db..0ea616b23 100644 --- a/cscript +++ b/cscript @@ -323,10 +323,16 @@ def dependencies(target): else: ffmpeg_options = {} - return (('ffmpeg-cdist', '27f25fb', ffmpeg_options), - ('libdcp', '348aaa6'), - ('libsub', '75d9785'), - ('rtaudio-cdist', '739969e')) + if target.platform == 'windows' and target.version == 'xp': + deps = [('ffmpeg-cdist', '65c6d9e', ffmpeg_options)] + else: + deps = [('ffmpeg-cdist', '27f25fb', ffmpeg_options)] + + deps.append(('libdcp', '348aaa6')) + deps.append(('libsub', '75d9785')) + deps.append(('rtaudio-cdist', '739969e')) + + return deps def option_defaults(): return { "gui": True } -- cgit v1.2.3