Commit 695edcba authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

xserver_xorg-server: fix build on AArch64

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: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 761ae9c3
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
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