blob: b52a5707d66d6a82269f5c63e7d8da63ad54242a [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001Fixes errors like
2
3Assembler messages:
4Fatal error: can't create .libs/pixman-mips-dspr2-asm.o: No such file or directory
5
6it works with glibc because it uses gcc fixed-headers but thats not right.
7
8We move the include under C block
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11Upstream-Status: Pending
12Index: pixman-0.32.6/pixman/pixman-private.h
13===================================================================
14--- pixman-0.32.6.orig/pixman/pixman-private.h
15+++ pixman-0.32.6/pixman/pixman-private.h
16@@ -1,4 +1,3 @@
17-#include <float.h>
18
19 #ifndef PIXMAN_PRIVATE_H
20 #define PIXMAN_PRIVATE_H
21@@ -17,6 +16,8 @@
22
23 #ifndef __ASSEMBLER__
24
25+#include <float.h>
26+
27 #ifndef PACKAGE
28 # error config.h must be included before pixman-private.h
29 #endif