summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDexuan Cui <dexuan.cui@intel.com>2011-12-02 11:27:00 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-02 15:28:42 +0000
commit7b31027b08daff4cf7be5750722d85173c52d963 (patch)
tree028b4f7dbf291104b11f031e451e037fcf84b8bc
parente5b5c3ab13652dab7b83bace97b3086bfa5ec451 (diff)
downloadpoky-7b31027b08daff4cf7be5750722d85173c52d963.tar.gz
libxfont: remove the unused no-scalable-crash.patch
(From OE-Core rev: 395dcd212909f69a099c52ff8536a750da71ef2b) Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-graphics/xorg-lib/libxfont/no-scalable-crash.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libxfont/no-scalable-crash.patch b/meta/recipes-graphics/xorg-lib/libxfont/no-scalable-crash.patch
deleted file mode 100644
index b3c58aff45..0000000000
--- a/meta/recipes-graphics/xorg-lib/libxfont/no-scalable-crash.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1Upstream-Status: Pending
2
3--- /tmp/fontdir.c 2006-08-01 16:17:22.000000000 +0200
4+++ libXfont-1.2.0/src/fontfile/fontdir.c 2006-08-01 16:20:37.248306000 +0200
5@@ -695,6 +695,11 @@
6 */
7 if (isscale)
8 {
9+ /* If the fontname says it is scalable, make sure that the
10+ * renderer supports OpenScalable and GetInfoScalable.
11+ */
12+ if (renderer->OpenScalable && renderer->GetInfoScalable)
13+ {
14 if (vals.values_supplied & SIZE_SPECIFY_MASK)
15 {
16 bzero((char *)&zeroVals, sizeof(zeroVals));
17@@ -794,6 +799,7 @@
18 bitmap->name.name);
19 }
20 }
21+ }
22 }
23 return TRUE;
24 }