commit 55dfec6

hovercats  ·  2026-04-15 12:07:49 +0000 UTC
parent d33c804
swiv: switch upstream to an active one
4 files changed,  +12, -8
+4, -0
 1@@ -2,6 +2,7 @@ cflags{
 2 	'-std=c99',
 3 	'-I $outdir',
 4 	'-isystem $builddir/pkg/fontconfig/include',
 5+	'-isystem $builddir/pkg/libxkbcommon/include',
 6 	'-isystem $builddir/pkg/pixman/include',
 7 	'-isystem $builddir/pkg/wayland/include',
 8 	'-isystem $builddir/pkg/wld/include',
 9@@ -10,6 +11,7 @@ cflags{
10 pkg.deps = {
11 	'$outdir/protocol/xdg-shell-client-protocol.h',
12 	'pkg/fontconfig/headers',
13+	'pkg/libxkbcommon/headers',
14 	'pkg/pixman/headers',
15 	'pkg/wayland/headers',
16 	'pkg/wld/headers',
17@@ -23,7 +25,9 @@ waylandproto('protocol/xdg-shell.xml', {
18 exe('swiv', {
19 	'swiv.c',
20 	'image.c',
21+	'wayland.c',
22 	'$outdir/protocol/xdg-shell.c.o',
23+	'$builddir/pkg/libxkbcommon/libxkbcommon.a',
24 	'$builddir/pkg/wld/libwld.a.d',
25 })
26 
+6, -6
 1@@ -1,4 +1,4 @@
 2-From 5822d39a37db7993e726af7f2e97f152b9593044 Mon Sep 17 00:00:00 2001
 3+From 7b8a28f27fb21a749e0d451fd1e68887969994dd Mon Sep 17 00:00:00 2001
 4 From: hovercats <hovercatswithlasereyes@protonmail.com>
 5 Date: Tue, 10 Mar 2026 12:42:54 +0100
 6 Subject: [PATCH] fix path for pixman header
 7@@ -8,18 +8,18 @@ Subject: [PATCH] fix path for pixman header
 8  1 file changed, 1 insertion(+), 1 deletion(-)
 9 
10 diff --git a/swiv.c b/swiv.c
11-index a10dd8d..c7d7cdd 100644
12+index afc9136..bc9e4ec 100644
13 --- a/swiv.c
14 +++ b/swiv.c
15 @@ -2,7 +2,7 @@
16- 
17- #include "image.h"
18+ #include <stdlib.h>
19+ #include <string.h>
20  
21 -#include <pixman-1/pixman.h>
22 +#include <pixman.h>
23- #include <wayland-client.h>
24+ #include <xkbcommon/xkbcommon.h>
25  
26- #include <wld/wld.h>
27+ #include "swiv.h"
28 -- 
29 2.49.0
30 
+1, -1
1@@ -1 +1 @@
2-Subproject commit 53948d6838123df4bb5840e13ebd4cfc4ec92e23
3+Subproject commit c4fbb89d3fd361cc29c67003df88b6bd0e6bf0be
+1, -1
1@@ -1 +1 @@
2-53948d6 r0
3+c4fbb89