annotate Resources/CMake/PixmanConfiguration.patch @ 571:a29f9628369e
fix build on visual studio 2008
author |
Sebastien Jodogne <s.jodogne@gmail.com> |
date |
Thu, 18 Apr 2019 16:34:25 +0200 |
parents |
351ab0da0150 |
children |
|
rev |
line source |
0
|
1 diff -urEb pixman-0.34.0.orig/pixman/pixman-x86.c pixman-0.34.0/pixman/pixman-x86.c
|
|
2 --- pixman-0.34.0.orig/pixman/pixman-x86.c 2016-07-05 12:46:52.889101224 +0200
|
|
3 +++ pixman-0.34.0/pixman/pixman-x86.c 2016-07-05 12:47:07.253101808 +0200
|
|
4 @@ -80,7 +80,7 @@
|
|
5 static pixman_bool_t
|
|
6 have_cpuid (void)
|
|
7 {
|
|
8 -#if _PIXMAN_X86_64 || defined (_MSC_VER)
|
|
9 +#if _PIXMAN_X86_64 || defined (_MSC_VER) || defined(__native_client__)
|
|
10
|
|
11 return TRUE;
|
|
12
|
|
13 Only in pixman-0.34.0/pixman: pixman-x86.c~
|