net-misc/httpie: x86 stable wrt bug #721524
[gentoo.git] / dev-qt / qtgui / files / qtgui-5.13.2-no-xcb-no-xkbcommon.patch
1 From 2749833d844b20a9e642b2df2074dfafde8622d3 Mon Sep 17 00:00:00 2001
2 From: Jimi Huotari <chiitoo@gentoo.org>
3 Date: Wed, 6 Nov 2019 00:54:57 +0200
4 Subject: [PATCH] Fix build with -xcb and -no-libinput
5
6 Since a34e81ab [1], 'xkbcommon_support' is under
7 'src/platformsupport/input', and will not be defined when building
8 with -no-libinput, and as such, 'xkbcommon_support-private' added in
9 'src/plugins/platforms/xcb/xcb_qpa_lib.pro' will be unknown.
10
11 1. https://code.qt.io/cgit/qt/qtbase.git/commit/?h=5.14&id=a34e81ab
12
13 Change-Id: I79563b329623651b462b8fedcfb59ef5f2c2e52a
14 Gentoo-bug: https://bugs.gentoo.org/699110
15 Suggested-by: Petr Zima <zima@matfyz.cz>
16 ---
17  src/platformsupport/platformsupport.pro | 2 +-
18  1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/src/platformsupport/platformsupport.pro b/src/platformsupport/platformsupport.pro
21 index 6d4f1b93bd1..877665ff06b 100644
22 --- a/src/platformsupport/platformsupport.pro
23 +++ b/src/platformsupport/platformsupport.pro
24 @@ -11,7 +11,7 @@ SUBDIRS = \
25  qtConfig(freetype)|darwin|win32: \
26      SUBDIRS += fontdatabases
27  
28 -qtConfig(evdev)|qtConfig(tslib)|qtConfig(libinput)|qtConfig(integrityhid) {
29 +qtConfig(evdev)|qtConfig(tslib)|qtConfig(libinput)|qtConfig(integrityhid)|qtConfig(xkbcommon) {
30      SUBDIRS += input
31      input.depends += devicediscovery
32  }
33 -- 
34 2.16.3