ports/graphics/qt5-wayland/files/patch-qtwayland.pro
Adriaan de Groot fc9d9b0c38 graphics/qt5-wayland: use memfd_create() on 13+
On 13+, the memfd_create() syscall can create anonymous shared-
memory areas that behaves like a file. This is used upstream
(not in Qt, but in KDE) when possible. Use it when relevant,
since it avoids creating temporary files.

While here, freshen-up the other patches.

PR:		259035
2022-08-18 10:23:58 +02:00

8 lines
207 B
Prolog

--- qtwayland.pro.orig 2022-06-20 20:17:21 UTC
+++ qtwayland.pro
@@ -1,3 +1,4 @@
-requires(linux:!android|macos|qnx)
+requires(!android)
+requires(linux|freebsd)
requires(qtHaveModule(gui))
load(qt_parts)