mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 08:10:31 -04:00
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
19 lines
476 B
C++
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
|