mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02:00
* on hosts without libx11 installed it fails with
| makekeys.c:33:27: fatal error: X11/Xresource.h: No such file or directory
since oe-core rev 52d4ff7b35602faa52360a3e7a800891ef60c739
* upstream added -I$(top_srcdir)/include in 24283d40b1e4314c6647dda49d2a159833341a8b
to ensure that right Xresource.h version is used, but we're building
makekeys outside source tree (x11_disable_makekeys.patch), so we need
to pass -I${S}/include in our makekeys build too
* building makekeys outside source tree isn't probably needed anymore
and recipes should be updated to reflect that, upstream fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=22584
http://cgit.freedesktop.org/xorg/lib/libX11/commit/src/util/Makefile.am?id=b2487d07f7b355f230a56e32c763acd08862735c
http://cgit.freedesktop.org/xorg/lib/libX11/commit/src/util/Makefile.am?id=24283d40b1e4314c6647dda49d2a159833341a8b
(From OE-Core rev: abdc37d181019b9dd21ad08ad998ea4ff2a3e264)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
744 B
BlitzBasic
23 lines
744 B
BlitzBasic
require libx11.inc
|
|
|
|
DESCRIPTION += " Support for XCMS is disabled in this version."
|
|
|
|
LICENSE = "MIT & MIT-style & BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=172255dee66bb0151435b2d5d709fcf7"
|
|
|
|
PR = "r1"
|
|
|
|
DEPENDS += "libxcb xproto xextproto xtrans libxau kbproto inputproto xf86bigfontproto xproto-native"
|
|
|
|
SRC_URI += "file://x11_disable_makekeys.patch \
|
|
file://keysymdef_include.patch \
|
|
file://makekeys_crosscompile.patch"
|
|
|
|
RPROVIDES_${PN}-dev = "libx11-dev"
|
|
RPROVIDES_${PN}-locale = "libx11-locale"
|
|
|
|
SRC_URI[md5sum] = "78b4b3bab4acbdf0abcfca30a8c70cc6"
|
|
SRC_URI[sha256sum] = "c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86"
|
|
|
|
EXTRA_OECONF += "--with-keysymdefdir=${STAGING_INCDIR}/X11/ --disable-xcms "
|