summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-lib/libxt
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-graphics/xorg-lib/libxt
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-lib/libxt')
-rw-r--r--meta/recipes-graphics/xorg-lib/libxt/libxt_fix_for_x32.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libxt/libxt_fix_for_x32.patch b/meta/recipes-graphics/xorg-lib/libxt/libxt_fix_for_x32.patch
deleted file mode 100644
index 79ae929d08..0000000000
--- a/meta/recipes-graphics/xorg-lib/libxt/libxt_fix_for_x32.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From c2916117aa09b7110ab1883e4295330ca7675e88 Mon Sep 17 00:00:00 2001
2From: Nitin A Kamble <nitin.a.kamble@intel.com>
3Date: Fri, 2 Dec 2011 12:20:05 -0800
4Subject: [PATCH] libxt: fix compilatoin with x32 toolchain
5
6Upstream-Status: Pending
7
8This fixes compilation with x32 toolchain.
9
10Received this patch from H.J. Lu <hjl.tools@gmail.com>
11Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/12/1
12---
13 include/X11/Xtos.h | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/include/X11/Xtos.h b/include/X11/Xtos.h
17index 599dbe2..1686063 100644
18--- a/include/X11/Xtos.h
19+++ b/include/X11/Xtos.h
20@@ -63,7 +63,7 @@ SOFTWARE.
21 defined(__sparc64__) || \
22 defined(__s390x__) || \
23 (defined(__hppa__) && defined(__LP64__)) || \
24- defined(__amd64__) || defined(amd64) || \
25+ defined(__amd64__) || defined(amd64) && defined(__LP64__)) || \
26 defined(__powerpc64__))
27 #define LONG64
28 #endif