diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-07-15 20:11:43 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-18 12:24:17 +0200 |
commit | 7697638c09e462b5ac3b006a464958547d6d0a57 (patch) | |
tree | 0178f5a2bb0d4bd3225ef48430a0657b40c59bbb /package/weston | |
parent | c7845548d89b644672f22ffca3e15f6682f6d56d (diff) | |
download | buildroot-7697638c09e462b5ac3b006a464958547d6d0a57.tar.gz buildroot-7697638c09e462b5ac3b006a464958547d6d0a57.zip |
package/libinput: bump version to 0.19.0, add locale dependency
Since 2015-04-22 libinput needs locale support:
http://cgit.freedesktop.org/wayland/libinput/commit/src/libinput-util.c?id=5c671e0375cc03032fcac26efe4a7835a74c8bfc
This patch adds the needed dependency also to
weston and xdriver_xf86-input-libinput.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/weston')
-rw-r--r-- | package/weston/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/weston/Config.in b/package/weston/Config.in index dec35839c6..07773f0a7b 100644 --- a/package/weston/Config.in +++ b/package/weston/Config.in @@ -1,7 +1,8 @@ -comment "weston needs udev and a toolchain w/ threads, dynamic library, headers >= 3.0" +comment "weston needs udev and a toolchain w/ locale, threads, dynamic library, headers >= 3.0" depends on BR2_ARCH_HAS_ATOMICS depends on !BR2_PACKAGE_HAS_UDEV || !BR2_TOOLCHAIN_HAS_THREADS || \ - !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 || BR2_STATIC_LIBS + !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 || BR2_STATIC_LIBS || \ + !BR2_ENABLE_LOCALE config BR2_PACKAGE_WESTON bool "weston" @@ -13,6 +14,7 @@ config BR2_PACKAGE_WESTON select BR2_PACKAGE_JPEG select BR2_PACKAGE_MTDEV select BR2_PACKAGE_LIBINPUT + depends on BR2_ENABLE_LOCALE # libinput depends on BR2_PACKAGE_HAS_UDEV depends on !BR2_STATIC_LIBS # wayland depends on BR2_TOOLCHAIN_HAS_THREADS # wayland |