summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/xfont/files
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-03-24 07:51:48 +0000
committerRichard Purdie <richard@openedhand.com>2006-03-24 07:51:48 +0000
commitb783a3e2f6744692c80909a70c3674dd316204dc (patch)
treef1e96b860f0c3accf06930f39c9b7d1c53c2bb9b /openembedded/packages/xfont/files
parent63e2f3e549fa5ef0388f5e975ff166e287f64cf4 (diff)
downloadpoky-b783a3e2f6744692c80909a70c3674dd316204dc.tar.gz
Move xlibs packages to xlibs/ as per changes in OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@335 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/xfont/files')
-rw-r--r--openembedded/packages/xfont/files/autofoo.patch18
-rw-r--r--openembedded/packages/xfont/files/scalable.patch27
2 files changed, 0 insertions, 45 deletions
diff --git a/openembedded/packages/xfont/files/autofoo.patch b/openembedded/packages/xfont/files/autofoo.patch
deleted file mode 100644
index 4998625c24..0000000000
--- a/openembedded/packages/xfont/files/autofoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
1
2#
3# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4#
5
6--- libXfont-1.4.2/configure.ac~autofoo 2004-05-06 20:19:03.000000000 -0400
7+++ libXfont-1.4.2/configure.ac 2005-01-16 12:14:14.042598720 -0500
8@@ -35,9 +35,9 @@
9 dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
10 dnl not possible to extract the version number here from Xfont.h
11 dnl
12+AC_CONFIG_AUX_DIR(.)
13 AM_INIT_AUTOMAKE([dist-bzip2])
14 AM_CONFIG_HEADER(config.h)
15-AC_CONFIG_AUX_DIR(.)
16 AC_CONFIG_HEADERS([include/X11/fonts/fontconf.h])
17
18 # Check for progs
diff --git a/openembedded/packages/xfont/files/scalable.patch b/openembedded/packages/xfont/files/scalable.patch
deleted file mode 100644
index 7f97b9a8f6..0000000000
--- a/openembedded/packages/xfont/files/scalable.patch
+++ /dev/null
@@ -1,27 +0,0 @@
1Index: fontfile/fontdir.c
2===================================================================
3RCS file: /cvs/xlibs/Xfont/fontfile/fontdir.c,v
4retrieving revision 3.22
5diff -u -r3.22 fontdir.c
6--- xfont/fontfile/fontdir.c 7 Jul 2003 16:40:11 -0000 3.22
7+++ xfont/fontfile/fontdir.c 30 Dec 2004 20:37:12 -0000
8@@ -699,6 +699,11 @@
9 */
10 if (isscale)
11 {
12+ /* If the fontname says it is scalable, make sure that the
13+ * renderer supports OpenScalable and GetInfoScalable.
14+ */
15+ if (renderer->OpenScalable && renderer->GetInfoScalable)
16+ {
17 if (vals.values_supplied & SIZE_SPECIFY_MASK)
18 {
19 bzero((char *)&zeroVals, sizeof(zeroVals));
20@@ -798,6 +803,7 @@
21 bitmap->name.name);
22 }
23 }
24+ }
25 }
26 return TRUE;
27 }