35ea75e9c2
This workaround was only applied for Qt < 5.12 and is no longer needed now that support for Qt < 5.15 has been dropped in commitafb4c96d27
Author: Michael Weghorn <m.weghorn@posteo.de> Date: Thu Aug 3 21:30:22 2023 +0200 qt: Drop code for Qt < 5.15 Commit originally adding the workaround: commitfe2baf9e84
Author: Jan-Marek Glogowski <jan-marek.glogowski@extern.cib.de> Date: Tue Dec 3 08:32:58 2019 +0100 Qt5 fix missing XCB_ICCCM_WM_HINT_WINDOW_GROUP This is the application level equivalent of the Qt5 fix for bug QTBUG-46626 / commit 0de4b32 ("xcb: fix issue with dialogs hidden by other windows"), which was broken since Qt 5.4 and is just fixed since Qt 5.12. It is needed for some window managers, which don't know about the WM_CLIENT_LEADER property. Both settings are the same, but just the latter is set by older Qt5 releases. This probably isn't a real problem, as GNOME or XFCE would use the gtk VCL plugin, but since I already wrote the code when debugging tdf#129071, there is also no reason to drop it (except: more code, more bugs...). This fix is optional and needs development headers for xcb-icccm, which can actually be compiled into Qt5. If missing configure will just print a warning, since it's a runtime requirement and we explicitly drop the linked Qt version symbol, so the potential build Qt version won't matter. Change-Id: Ifc5a8f8a40ee13779a911efb53e8b8b868614d0b Reviewed-on: https://gerrit.libreoffice.org/84299 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de> Change-Id: I56b708449cf686f787f55256c76673be604d31e4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158102 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
36 lines
594 B
C
36 lines
594 B
C
/*
|
|
|
|
Settings about which desktops have support enabled.
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_VCLPLUG_H
|
|
#define CONFIG_VCLPLUG_H
|
|
|
|
/**
|
|
* Set, if the platform uses X11 code.
|
|
*/
|
|
#define USING_X11 0
|
|
|
|
/**
|
|
* Set the enabled platform plugins
|
|
*/
|
|
#define ENABLE_GEN 0
|
|
#define ENABLE_GTK3 0
|
|
#define ENABLE_GTK3_KDE5 0
|
|
#define ENABLE_HEADLESS 0
|
|
#define ENABLE_KF5 0
|
|
#define ENABLE_KF6 0
|
|
#define ENABLE_QT5 0
|
|
#define ENABLE_QT6 0
|
|
|
|
/**
|
|
* Additional settings for the plugins
|
|
*/
|
|
#define USE_HEADLESS_CODE 0
|
|
#define ENABLE_GSTREAMER_1_0 0
|
|
#define QT5_HAVE_GOBJECT 0
|
|
#define QT5_USING_X11 0
|
|
#define QT6_USING_X11 0
|
|
|
|
#endif
|