ports/editors/libreoffice/files/patch-vcl_source_app_salplug.cxx
Dima Panov 1e625d55fc FreeBSD Office team is proud to announce LibreOffice 6.4.4, latest stable release
Some notes about changes in port options:

- GTK2 option is obsolete by upstream
- GTK3 option is not more set by default because of unstable yet and have visual glitches
- QT5 option is set by default to provide comfy visual style for every user
- Change VCL autotetect logic (used if enable, skipto next in row if disabled:
-- For KDE/LXQT: kf5, qt5, gtk3_kde5, gtk3, gen
-- For GNOME, Unity, XFCE, MATE: gtk3, qt5, gen
-- All other DE should follow gnome list

One small note — since upcoming Qt5-5.15 will drop binary support for FreeBSD 11.x due to
outdated OpenSSL-1.0 in base, here is no reason to enable QT5 option on FreeBSD <12 by default

Thanks for all testers and supporters!

Dima, with office hat

Relnotes:	https://wiki.documentfoundation.org/ReleaseNotes/6.4
2020-06-13 07:16:28 +00:00

19 lines
476 B
C++

--- vcl/source/app/salplug.cxx.orig 2020-05-27 12:17:53 UTC
+++ vcl/source/app/salplug.cxx
@@ -152,6 +152,7 @@ SalInstance* autodetect_plugin()
#if ENABLE_KF5
"kf5",
#endif
+ "qt5",
#if ENABLE_GTK3_KDE5
"gtk3_kde5",
#endif
@@ -160,7 +161,7 @@ SalInstance* autodetect_plugin()
static const char* const pStandardFallbackList[] =
{
- "gtk3", "gen", nullptr
+ "gtk3", "qt5", "gen", nullptr
};
#ifdef HEADLESS_VCLPLUG