Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
d/p/force: Work around wxgtk3 GLCanvas crashing on Wayland
· 2b2eb3d5
Gert Wollny
authored
Aug 03, 2019
2b2eb3d5
Update changelog
· d4932b20
Gert Wollny
authored
Aug 03, 2019
d4932b20
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
d4932b20
ginkgocadx (3.8.8-2)
UNRELEASED
; urgency=medium
ginkgocadx (3.8.8-2)
unstable
; urgency=medium
[ Andreas Tille ]
* rebuild against wxWidgets GTK 3 package
Closes: #933414
* debhelper-compat 12
* Standards-Version: 4.4.0
-- Andreas Tille <tille@debian.org> Wed, 31 Jul 2019 11:56:36 +0200
[ Gert Wollny ]
* Add patch to force X11 with gtk3 backend to work around #900678
-- Gert Wollny <gewo@debian.org> Sat, 03 Aug 2019 17:26:04 +0200
ginkgocadx (3.8.8-1) unstable; urgency=medium
...
...
debian/patches/force-x11-with-gtk3.patch
0 → 100644
View file @
d4932b20
Description: Force the use of X11 with the wxgtk-3 backend
Author: Gert Wollny <gewo@debian.org>
Debian-Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900678
--- a/ginkgocadx/main.cpp
+++ b/ginkgocadx/main.cpp
@@ -37,7 +37,10 @@
#else
int main(int argc, char** argv)
{
-
+#ifdef __WXGTK3__
+ setenv("GDK_BACKEND", "x11", 1);
+#endif
+
return Init(argc, argv);
}
#endif
debian/patches/series
0 → 100644
View file @
d4932b20
force-x11-with-gtk3.patch