dde83bc463
xkeyboard-connfig was selectable only if X.org was enabled. However, weston, the reference implementation of the Wayland protocol, also needs xkeyboard-config, so we have to make this package available outside of the if BR2_PACKAGE_XORG7 ... endif conditional. In addition to this, the xkeyboard-config currently pulls in xapp_xkbcomp as a runtime dependency, but this dependency is only needed with X.org. And it also pulls in xlib_libX11 and xproto_proto as build-time dependencies. But in fact those ones are runtime dependencies, and they are only needed under X.org. This helps reducing the number of dependencies of xkeyboard-config in a weston/wayland configuration. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 lines
335 B
Plaintext
11 lines
335 B
Plaintext
config BR2_PACKAGE_XKEYBOARD_CONFIG
|
|
bool "xkeyboard-config"
|
|
# Runtime dependencies
|
|
select BR2_PACKAGE_XAPP_XKBCOMP if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XPROTO_XPROTO if BR2_PACKAGE_XORG7
|
|
help
|
|
keyboard configuration database for X
|
|
|
|
http://xlibs.freedesktop.org/xkbdesc
|