1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

x11-wm/gamescope: update to 3.10.4

Changes:	https://github.com/Plagman/gamescope/compare/3.10.3...3.10.4
Reported by:	portscout
This commit is contained in:
Jan Beich 2022-01-14 21:25:33 +00:00
parent a0474900c4
commit fcf393e4f1
3 changed files with 4 additions and 33 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= gamescope
DISTVERSION= 3.10.3
DISTVERSION= 3.10.4
CATEGORIES= x11-wm
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1639817360
SHA256 (Plagman-gamescope-3.10.3_GH0.tar.gz) = 41ee8f27e6ad84079ec5d9a1b5f7e9bef4e2150ffd159044dfbd9703cb536d27
SIZE (Plagman-gamescope-3.10.3_GH0.tar.gz) = 98109
TIMESTAMP = 1642195533
SHA256 (Plagman-gamescope-3.10.4_GH0.tar.gz) = f6407dea01e85f14423f6ad552b6e714f288395fe71ef5f0d1fac9c24163ba34
SIZE (Plagman-gamescope-3.10.4_GH0.tar.gz) = 99542
SHA256 (nothings-stb-af1a5bc_GH0.tar.gz) = 3facf6e6f8c3e1715e1a088f22bad9c9202973f9369fb3f088f46cced3f64058
SIZE (nothings-stb-af1a5bc_GH0.tar.gz) = 1387334
SHA256 (emersion-libliftoff-2e1dd93b60224e77f6a49ad8fb36d184e3a9a3bc_GL0.tar.gz) = 487a09a299b178797d93fd1938a4513f02f7d562cdc534dd44561d4751300daf

View File

@ -1,29 +0,0 @@
https://github.com/Plagman/gamescope/issues/316
../src/wlserver.cpp:26:10: fatal error: 'wlr/backend/noop.h' file not found
#include <wlr/backend/noop.h>
^~~~~~~~~~~~~~~~~~~~
--- src/wlserver.cpp.orig 2021-10-18 03:17:30 UTC
+++ src/wlserver.cpp
@@ -23,7 +23,6 @@ extern "C" {
#include <wlr/backend/headless.h>
#include <wlr/backend/multi.h>
#include <wlr/backend/libinput.h>
-#include <wlr/backend/noop.h>
#include <wlr/interfaces/wlr_input_device.h>
#include <wlr/interfaces/wlr_keyboard.h>
#include <wlr/render/wlr_renderer.h>
@@ -642,10 +641,10 @@ bool wlserver_init( void ) {
wl_signal_add( &wlserver.wlr.multi_backend->events.new_input, &new_input_listener );
- wlserver.wlr.noop_backend = wlr_noop_backend_create( wlserver.display );
+ wlserver.wlr.noop_backend = wlr_headless_backend_create( wlserver.display );
wlr_multi_backend_add( wlserver.wlr.multi_backend, wlserver.wlr.noop_backend );
- wlserver.wlr.output = wlr_noop_add_output( wlserver.wlr.noop_backend );
+ wlserver.wlr.output = wlr_headless_add_output( wlserver.wlr.noop_backend, 800, 600 );
if ( bIsDRM == True )
{