summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-10-10 13:43:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-18 12:13:36 +0100
commitd6dc72c0487bf1b0c8c8b78c3f1d5cf6cd3b2c05 (patch)
tree5ca26e90b558a0eb97b0abd1ec1359f68285efe7 /meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch
parentf29e000832edb7b3467a1dedcdd8579b1201c643 (diff)
downloadpoky-d6dc72c0487bf1b0c8c8b78c3f1d5cf6cd3b2c05.tar.gz
xorg: remove all traces of XPrint
The XPrint server was removed from Xorg in 2008. (From OE-Core rev: 5b3748d463a6666c0d8e2624092619da8d8e6328) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch')
-rw-r--r--meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch b/meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch
deleted file mode 100644
index fea18cff0f..0000000000
--- a/meta/recipes-graphics/xorg-lib/libxp/fix-cast-error.patch
+++ /dev/null
@@ -1,42 +0,0 @@
1This patch fixes these new errors:
2
3| XpNotifyPdm.c:234:10: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
4| XpNotifyPdm.c:271:10: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
5| XpNotifyPdm.c:286:10: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
6
7
8Upstream-Status: Pending
9
10Signed-off-by: Saul Wold <sgw@linux.intel.com>
11
12Index: libXp-1.0.1/src/XpNotifyPdm.c
13===================================================================
14--- libXp-1.0.1.orig/src/XpNotifyPdm.c
15+++ libXp-1.0.1/src/XpNotifyPdm.c
16@@ -231,7 +231,7 @@ XpGetPdmStartParams (
17 /*
18 * Error - cannot determine or establish a selection_display.
19 */
20- return( (Status) NULL );
21+ return( (Status) 0 );
22 }
23
24 /*
25@@ -268,7 +268,7 @@ XpGetPdmStartParams (
26 XCloseDisplay( *selection_display );
27 *selection_display = (Display *) NULL;
28 }
29- return( (Status) NULL );
30+ return( (Status) 0 );
31 }
32
33 status = XmbTextListToTextProperty( *selection_display, list, 6,
34@@ -283,7 +283,7 @@ XpGetPdmStartParams (
35 XCloseDisplay( *selection_display );
36 *selection_display = (Display *) NULL;
37 }
38- return( (Status) NULL );
39+ return( (Status) 0 );
40 }
41
42 *type = text_prop.encoding;