ports/editors/libreoffice/files/patch-vcl_source_app_salplug.cxx
Dima Panov 01cc9eaaa0
editors/libreoffice: update to 24.8.3 release (+)
LibreOffice 24.8.3, the third minor release of the LibreOffice 24.8 family of the free open source,
volunteer-supported office suite is available for FreeBSD users!

The release includes over 80 bug and regression fixes over LibreOffice 24.8.2 [1] to improve the stability
and robustness of the software, as well as interoperability with legacy and proprietary document formats.
In addition, support for Visio template format VSTX has been added.

Changelog:	https://wiki.documentfoundation.org/Releases/24.8.3/RC1 \
		https://wiki.documentfoundation.org/Releases/24.8.3/RC2
Release Notes:	https://blog.documentfoundation.org/blog/2024/11/14/libreoffice-24-8-3/

Co-Authored-by:	Li-Wen Hsu <lwhsu@FreeBSD.org>

Sponsored by:	Future Crew, LLC
2024-11-15 11:57:20 +03:00

44 lines
858 B
C++

--- vcl/source/app/salplug.cxx.orig 2024-10-27 12:32:22 UTC
+++ vcl/source/app/salplug.cxx
@@ -184,6 +184,9 @@ const char* const* autodetect_plugin_list()
#if ENABLE_KF5
"kf5",
#endif
+#if ENABLE_QT5
+ "qt5",
+#endif
#if ENABLE_GTK3_KDE5
"gtk3_kde5",
#endif
@@ -201,9 +204,15 @@ const char* const* autodetect_plugin_list()
#if ENABLE_KF6
"kf6",
#endif
+#if ENABLE_QT6
+ "qt6",
+#endif
#if ENABLE_KF5
"kf5",
#endif
+#if ENABLE_QT5
+ "qt5",
+#endif
#if ENABLE_GTK3_KDE5
"gtk3_kde5",
#endif
@@ -218,6 +227,15 @@ const char* const* autodetect_plugin_list()
static const char* const pStandardFallbackList[] =
{
+#if ENABLE_QT6
+ "qt6",
+#endif
+#if ENABLE_QT5
+ "qt5",
+#endif
+#if ENABLE_GTK4
+ "gtk4",
+#endif
#if ENABLE_GTK3
"gtk3",
#endif