From 8b567c79de9ed0711e630359a3a5237a70646190 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Tue, 5 Jul 2016 14:38:35 -0400 Subject: contrib: Disable vpx threading on mingw. VP9 has problems with newer pthreads-win32. No easy way to disable threading for VP9 only. --- contrib/libvpx/module.defs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'contrib/libvpx/module.defs') 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)) -- cgit v1.2.3