diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-03-27 06:32:32 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-27 20:30:38 +0100 |
commit | a590595c700370eef5c024d7e264bf26f29db2fe (patch) | |
tree | 8881cc6310be76d3b2599c397cef23717417ddea /package/x11r7 | |
parent | b41f4081a6be0fa8768208d4459bd62e001253a3 (diff) | |
download | buildroot-novena-a590595c700370eef5c024d7e264bf26f29db2fe.tar.gz buildroot-novena-a590595c700370eef5c024d7e264bf26f29db2fe.zip |
xkeyboard-config: needs libX11 and xproto_xproto
Fixes a build failure i've found while debugging another one :)
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/x11r7')
-rw-r--r-- | package/x11r7/xkeyboard-config/Config.in | 2 | ||||
-rw-r--r-- | package/x11r7/xkeyboard-config/xkeyboard-config.mk | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/package/x11r7/xkeyboard-config/Config.in b/package/x11r7/xkeyboard-config/Config.in index 8e27dacb4..640bb1d53 100644 --- a/package/x11r7/xkeyboard-config/Config.in +++ b/package/x11r7/xkeyboard-config/Config.in @@ -1,6 +1,8 @@ config BR2_PACKAGE_XKEYBOARD_CONFIG bool "xkeyboard-config" select BR2_PACKAGE_XAPP_XKBCOMP + select BR2_PACKAGE_XLIB_LIBX11 + select BR2_PACKAGE_XPROTO_XPROTO help keyboard configuration database for X diff --git a/package/x11r7/xkeyboard-config/xkeyboard-config.mk b/package/x11r7/xkeyboard-config/xkeyboard-config.mk index bd3314c16..0e63a452c 100644 --- a/package/x11r7/xkeyboard-config/xkeyboard-config.mk +++ b/package/x11r7/xkeyboard-config/xkeyboard-config.mk @@ -6,7 +6,7 @@ XKEYBOARD_CONFIG_VERSION = 2.6 XKEYBOARD_CONFIG_SOURCE = xkeyboard-config-$(XKEYBOARD_CONFIG_VERSION).tar.bz2 XKEYBOARD_CONFIG_SITE = http://www.x.org/releases/individual/data/xkeyboard-config/ -XKEYBOARD_CONFIG_DEPENDENCIES = host-intltool host-xapp_xkbcomp +XKEYBOARD_CONFIG_DEPENDENCIES = host-intltool host-xapp_xkbcomp xlib_libX11 xproto_xproto XKEYBOARD_CONFIG_CONF_OPT = GMSGFMT=/usr/bin/msgfmt $(eval $(autotools-package)) |