]> git.pld-linux.org Git - packages/crossmingw32-pixman.git/blob - pixman-ssse3.patch
- updated to 0.32.0
[packages/crossmingw32-pixman.git] / pixman-ssse3.patch
1 Fix SSSE3 detection (use SSSE3, not APIC flag).
2 --- pixman-0.32.0/pixman/pixman-x86.c.orig      2013-11-07 23:43:03.000000000 +0100
3 +++ pixman-0.32.0/pixman/pixman-x86.c   2013-11-11 09:18:08.030841057 +0100
4 @@ -170,7 +170,7 @@
5         features |= X86_SSE;
6      if (d & (1 << 26))
7         features |= X86_SSE2;
8 -    if (d & (1 << 9))
9 +    if (c & (1 << 9))
10         features |= X86_SSSE3;
11  
12      /* Check for AMD specific features */
This page took 0.170616 seconds and 3 git commands to generate.