Initial commit

This commit is contained in:
Your Name
2026-04-23 17:07:55 +08:00
commit b7e39e063b
16725 changed files with 1625565 additions and 0 deletions
@@ -0,0 +1,32 @@
From fc28149b6b198042c8d29e0931415adad7ed3231 Mon Sep 17 00:00:00 2001
From: Wang Mingyu <wangmy@fujitsu.com>
Date: Thu, 16 Mar 2023 08:03:47 +0000
Subject: [PATCH] Fix install conflict when enable multilib.
Automake defines pythondir in terms of libdir (rather than hardcode 'lib' or query it from python as automake upstream does)
https://git.yoctoproject.org/poky/tree/meta/recipes-devtools/automake/automake/0001-automake-Update-for-python.m4-to-respect-libdir.patch
So libdir needs to be defined when pythondir is defined.
Upstream-Status: Inappropriate
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 8b57a83..580f5bc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
SUBDIRS = src xcbgen
-pkgconfigdir = $(datarootdir)/pkgconfig
+pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xcb-proto.pc
EXTRA_DIST=doc xcb-proto.pc.in autogen.sh README.md
--
2.34.1
@@ -0,0 +1,29 @@
From ed499cffabe64fc1dc5898cb69ffa7e62c19e9d8 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex@linutronix.de>
Date: Tue, 5 Jul 2022 21:19:20 +0200
Subject: [PATCH] xcb-proto.pc.in: reinstate libdir
Otherwise the following occurs when building libxcb:
| checking for xcb-proto >= 1.14... no
| configure: error: Package requirements (xcb-proto >= 1.14) were not met:
|
| Variable 'libdir' not defined in '/srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/libxcb/1.15-r0/recipe-sysroot/usr/share/pkgconfig/xcb-proto.pc'
Upstream-Status: Submitted [https://gitlab.freedesktop.org/xorg/proto/xcbproto/-/merge_requests/31]
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
xcb-proto.pc.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/xcb-proto.pc.in b/xcb-proto.pc.in
index 0822b18..c7c8b47 100644
--- a/xcb-proto.pc.in
+++ b/xcb-proto.pc.in
@@ -2,6 +2,7 @@ prefix=@prefix@
exec_prefix=@exec_prefix@
datarootdir=@datarootdir@
datadir=@datadir@
+libdir=@libdir@
xcbincludedir=${pc_sysrootdir}@xcbincludedir@
PYTHON_PREFIX=@PYTHON_PREFIX@
pythondir=${pc_sysrootdir}@pythondir@