diff options
author | Michael Palimaka <kensington@gentoo.org> | 2019-04-30 23:06:12 +1000 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-06 12:22:48 +0200 |
commit | c30eb79b30c55c74dd233183395f7578ffc887d1 (patch) | |
tree | d8551c71a2321bbdcedcc9d8fc603d3471797eb6 /eclass | |
parent | www-client/opera: Old (diff) | |
download | gentoo-c30eb79b30c55c74dd233183395f7578ffc887d1.tar.gz gentoo-c30eb79b30c55c74dd233183395f7578ffc887d1.tar.bz2 gentoo-c30eb79b30c55c74dd233183395f7578ffc887d1.zip |
qt5-build.eclass: mirclient disappears in Qt 5.14
Signed-off-by: Michael Palimaka <kensington@gentoo.org>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index d4f4678eed07..290a0c403811 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -623,7 +623,8 @@ qt5_base_configure() { $(tc-ld-is-gold && echo -use-gold-linker || echo -no-use-gold-linker) # disable all platform plugins by default, override in qtgui - -no-xcb -no-eglfs -no-kms -no-gbm -no-directfb -no-linuxfb -no-mirclient + -no-xcb -no-eglfs -no-kms -no-gbm -no-directfb -no-linuxfb + $([[ ${QT5_MINOR_VERSION} -lt 14 ]] && echo -no-mirclient) # disable undocumented X11-related flags, override in qtgui # (not shown in ./configure -help output) |