diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/libvpx/disable_pthread_on_mingw.patch | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/libvpx/disable_pthread_on_mingw.patch')
-rw-r--r-- | media/libvpx/disable_pthread_on_mingw.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media/libvpx/disable_pthread_on_mingw.patch b/media/libvpx/disable_pthread_on_mingw.patch new file mode 100644 index 000000000..b458fd357 --- /dev/null +++ b/media/libvpx/disable_pthread_on_mingw.patch @@ -0,0 +1,32 @@ +From: Jacek Caban <jacek@codeweavers.com> +Don't use pthread for libvpx in mingw builds. + + +diff --git a/media/libvpx/vpx_config_x86-win32-gcc.h b/media/libvpx/vpx_config_x86-win32-gcc.h +index 5bc3efb..e60f84d 100644 +--- a/media/libvpx/vpx_config_x86-win32-gcc.h ++++ b/media/libvpx/vpx_config_x86-win32-gcc.h +@@ -32,7 +32,8 @@ + #define HAVE_AVX2 1 + #define HAVE_VPX_PORTS 1 + #define HAVE_STDINT_H 1 +-#define HAVE_PTHREAD_H 1 ++#undef HAVE_PTHREAD_H ++#define HAVE_PTHREAD_H 0 + #define HAVE_SYS_MMAN_H 1 + #define HAVE_UNISTD_H 1 + #define CONFIG_DEPENDENCY_TRACKING 1 +diff --git a/media/libvpx/vpx_config_x86_64-win64-gcc.h b/media/libvpx/vpx_config_x86_64-win64-gcc.h +index 4ff4339..b056a0e 100644 +--- a/media/libvpx/vpx_config_x86_64-win64-gcc.h ++++ b/media/libvpx/vpx_config_x86_64-win64-gcc.h +@@ -32,7 +32,8 @@ + #define HAVE_AVX2 1 + #define HAVE_VPX_PORTS 1 + #define HAVE_STDINT_H 1 +-#define HAVE_PTHREAD_H 1 ++#undef HAVE_PTHREAD_H ++#define HAVE_PTHREAD_H 0 + #define HAVE_SYS_MMAN_H 1 + #define HAVE_UNISTD_H 1 + #define CONFIG_DEPENDENCY_TRACKING 1 |