diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-10-14 18:20:12 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-10-14 18:20:18 +0200 |
commit | 62d6aa651cc9cba85937b117a0d8a00e24cf0f22 (patch) | |
tree | d8bd2b471cff7e26b36613dd713d244fdcd76206 /media-libs/kvazaar/files | |
parent | net-misc/wireguard: bump (diff) | |
download | gentoo-62d6aa651cc9cba85937b117a0d8a00e24cf0f22.tar.gz gentoo-62d6aa651cc9cba85937b117a0d8a00e24cf0f22.tar.bz2 gentoo-62d6aa651cc9cba85937b117a0d8a00e24cf0f22.zip |
media-libs/kvazaar: Bump to 1.0.0.
Fix tests by downloading greatest, bug #595932
Package-Manager: portage-2.3.2
Diffstat (limited to 'media-libs/kvazaar/files')
-rw-r--r-- | media-libs/kvazaar/files/multilib.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/media-libs/kvazaar/files/multilib.patch b/media-libs/kvazaar/files/multilib.patch new file mode 100644 index 000000000000..fb0711dac994 --- /dev/null +++ b/media-libs/kvazaar/files/multilib.patch @@ -0,0 +1,15 @@ +https://github.com/ultravideo/kvazaar/pull/141 + +Index: kvazaar-1.0.0/src/global.h +=================================================================== +--- kvazaar-1.0.0.orig/src/global.h ++++ kvazaar-1.0.0/src/global.h +@@ -253,7 +253,7 @@ typedef enum { COLOR_Y = 0, COLOR_U, COL + + + // Hardware data (abstraction of defines). Extend for other compilers +-#if defined(_M_IX86) || defined(__i586__) || defined(__i686__) || defined(_M_X64) || defined(_M_AMD64) || defined(__amd64__) || defined(__x86_64__) ++#if defined(_M_IX86) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || defined(_M_X64) || defined(_M_AMD64) || defined(__amd64__) || defined(__x86_64__) + # define COMPILE_INTEL 1 + #else + # define COMPILE_INTEL 0 |