From: Bradley Sepos Date: Tue, 5 Jul 2016 18:38:35 +0000 (-0400) Subject: contrib: Disable vpx threading on mingw. X-Git-Tag: 1.0.0~336 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b567c79de9ed0711e630359a3a5237a70646190;p=handbrake contrib: Disable vpx threading on mingw. VP9 has problems with newer pthreads-win32. No easy way to disable threading for VP9 only. --- diff --git a/contrib/libvpx/module.defs b/contrib/libvpx/module.defs index 761385795..2ec67b209 100644 --- a/contrib/libvpx/module.defs +++ b/contrib/libvpx/module.defs @@ -20,12 +20,12 @@ LIBVPX.CONFIGURE.extra = \ ifeq (1,$(BUILD.cross)) LIBVPX.CONFIGURE.env.CROSS = CROSS="$(BUILD.spec)-" LIBVPX.CONFIGURE.args.build = -endif - -ifeq (1-i686,$(BUILD.cross)-$(BUILD.machine)) - LIBVPX.CONFIGURE.extra += --target=x86-win32-gcc -else ifeq (1-x86_64,$(BUILD.cross)-$(BUILD.machine)) - LIBVPX.CONFIGURE.extra += --target=x86_64-win64-gcc + LIBVPX.CONFIGURE.extra += --disable-multithread + ifeq (i686,$(BUILD.machine)) + LIBVPX.CONFIGURE.extra += --target=x86-win32-gcc + else ifeq (x86_64,$(BUILD.machine)) + LIBVPX.CONFIGURE.extra += --target=x86_64-win64-gcc + endif endif ifeq (1,$(FEATURE.local_yasm))