From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/bootsplash/files/freetype2.patch | 15 +++++++++++++++ recipes/bootsplash/files/gcc-issues.patch | 22 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 recipes/bootsplash/files/freetype2.patch create mode 100644 recipes/bootsplash/files/gcc-issues.patch (limited to 'recipes/bootsplash/files') diff --git a/recipes/bootsplash/files/freetype2.patch b/recipes/bootsplash/files/freetype2.patch new file mode 100644 index 0000000000..3683c628f8 --- /dev/null +++ b/recipes/bootsplash/files/freetype2.patch @@ -0,0 +1,15 @@ +Index: bootsplash-3.0.7/Utilities/ttf.c +=================================================================== +--- bootsplash-3.0.7.orig/Utilities/ttf.c 2003-08-09 11:58:44.000000000 +0200 ++++ bootsplash-3.0.7/Utilities/ttf.c 2006-04-04 11:26:54.210699456 +0200 +@@ -9,8 +9,9 @@ + #include + #include + #include ++#include ++#include FT_FREETYPE_H + +-#include + #include + #include + diff --git a/recipes/bootsplash/files/gcc-issues.patch b/recipes/bootsplash/files/gcc-issues.patch new file mode 100644 index 0000000000..c667fde329 --- /dev/null +++ b/recipes/bootsplash/files/gcc-issues.patch @@ -0,0 +1,22 @@ +--- bootsplash-3.0.7/Utilities/mng.c_orig 2006-06-07 15:03:47.000000000 +0000 ++++ bootsplash-3.0.7/Utilities/mng.c 2006-06-07 15:04:46.000000000 +0000 +@@ -228,7 +228,8 @@ + a = a * mymng->alpha / 100; + switch (mymng->fbbpp) { + case 16: +- input = *((unsigned short *) background)++; ++ input = *((unsigned short *) background); ++ input = input++; + + br = (input >> mng->fbredo) << (8 - mng->fbredl); + bg = (input >> mng->fbgreeno) << (8 - +@@ -279,7 +280,8 @@ + fbgreeno) | (b << mng-> + fbblueo); + +- *((unsigned short *) dest)++ = output; ++ output = *((unsigned short *) dest); ++ output = output++; + break; + case 24: + *dest++ = b; -- cgit v1.2.3