From b2237bccba179e5483e083edf5ebbd313d240dfd Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sat, 19 Aug 2023 17:18:07 -0400 Subject: add waterfox-g --- waterfox-g/debian/patches/fix-wayland-build.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 waterfox-g/debian/patches/fix-wayland-build.patch (limited to 'waterfox-g/debian/patches/fix-wayland-build.patch') diff --git a/waterfox-g/debian/patches/fix-wayland-build.patch b/waterfox-g/debian/patches/fix-wayland-build.patch new file mode 100644 index 0000000..703b1a8 --- /dev/null +++ b/waterfox-g/debian/patches/fix-wayland-build.patch @@ -0,0 +1,19 @@ +Description: Fix FTBFS on bionic. Compiler errors: + In file included from Unified_cpp_widget_gtk1.cpp:2: + /<>/firefox-92.0~b2+build1/widget/gtk/WaylandBuffer.cpp:261:39: error: unknown type name 'GLContext'; did you mean 'EGLContext'? + const LayoutDeviceIntSize& aSize, GLContext* aGL) { + ^~~~~~~~~ + +Author: Rico Tzschichholz + +--- a/widget/gtk/WaylandBuffer.cpp ++++ b/widget/gtk/WaylandBuffer.cpp +@@ -258,7 +258,7 @@ + + /* static */ + RefPtr WaylandBufferDMABUF::Create( +- const LayoutDeviceIntSize& aSize, GLContext* aGL) { ++ const LayoutDeviceIntSize& aSize, gl::GLContext* aGL) { + RefPtr buffer = new WaylandBufferDMABUF(aSize); + + const auto flags = -- cgit