695edcbabe
Fixes the following build issue: Making all in fb CC libfb_la-fb24_32.lo In file included from fb24_32.c:30:0: fb.h:98:2: error: #error "GLYPHPADBYTES must be 4" See: http://autobuild.buildroot.org/results/9135238abcde29918f8cb61002f1fb9279884a47/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
659 B
Diff
24 lines
659 B
Diff
Add necessary definitions for AArch64
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
Index: xserver_xorg-server-1.9.4/include/servermd.h
|
|
===================================================================
|
|
--- xserver_xorg-server-1.9.4.orig/include/servermd.h 2009-11-04 20:31:46.000000000 +0100
|
|
+++ xserver_xorg-server-1.9.4/include/servermd.h 2012-12-28 18:16:55.000000000 +0100
|
|
@@ -68,6 +68,14 @@
|
|
* GLYPHPADBYTES is used.
|
|
*/
|
|
|
|
+#ifdef __aarch64__
|
|
+
|
|
+# define IMAGE_BYTE_ORDER LSBFirst
|
|
+# define BITMAP_BIT_ORDER LSBFirst
|
|
+# define GLYPHPADBYTES 4
|
|
+
|
|
+#endif
|
|
+
|
|
#ifdef __avr32__
|
|
|
|
#define IMAGE_BYTE_ORDER MSBFirst
|