summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-19 19:49:37 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-19 19:49:37 +0100
commitffbf2291d5c8d8e3a8e1fa98b029d66ddebcad31 (patch)
treeb714ac46d8670638e5ba3d298406f695f38dacc8 /cscript
parent374a29501584c05b427d2cbf43bd3f7a18bc8f94 (diff)
Try to peg Windows XP ffmpeg build to one derived from 3.4.2.
Diffstat (limited to 'cscript')
-rw-r--r--cscript14
1 files changed, 10 insertions, 4 deletions
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 }