X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=768eb3e64c23ecbadd0aef9b547d282b379bcbd3;hb=5d71b86e818f9dfa3f7f573e438f2f6ddd5cdefc;hp=3724ab4b12225e9392859e393a3c9ba4fc801618;hpb=24ae62cee407a05ce391884ce3bce03f53de7982;p=dcpomatic.git diff --git a/cscript b/cscript index 3724ab4b1..768eb3e64 100644 --- a/cscript +++ b/cscript @@ -233,8 +233,8 @@ def dependencies(target): ffmpeg_options = {} return (('ffmpeg-cdist', '1d4a1a4', ffmpeg_options), - ('libdcp', 'b105b7d'), - ('libsub', '79e49c2')) + ('libdcp', '4e1c04f'), + ('libsub', '3db5052')) def configure_options(target): opt = '' @@ -251,6 +251,10 @@ def configure_options(target): elif target.version == '7': opt += ' --workaround-gssapi --static-xmlpp' + # Build Windows debug versions with static linking as I think gdb works better then + if target.debug and target.platform == 'windows': + opt += ' --static-dcpomatic' + return opt def build(target, options):