summaryrefslogtreecommitdiffstats
path: root/patches/DirectFB-1.3.0/generic/disable-ppcasm_memcpy_cachable_S.diff
blob: c99d44d554f01060e7b57f4e8fdbc0d5da4583e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: Marc Kleine-Budde <mkl@pengutronix.de>
Subject: disable ppc memcpy that needs kernel kernel config file

ppcasm_memcpy_cachable.S needs the kernel config to compile.
This patch simply disables the file.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

---
 lib/direct/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: DirectFB-1.3.0/lib/direct/Makefile.am
===================================================================
--- DirectFB-1.3.0.orig/lib/direct/Makefile.am
+++ DirectFB-1.3.0/lib/direct/Makefile.am
@@ -21,7 +21,7 @@ EXTRA_DIST = \
 
 if BUILDPPCASM
 if HAVE_LINUX
-ppcasm_sources = ppcasm_memcpy.S ppcasm_memcpy_cachable.S
+ppcasm_sources = ppcasm_memcpy.S #ppcasm_memcpy_cachable.S
 else
 ppcasm_sources = ppcasm_memcpy.S
 endif