From 82bc9ebe53c9551817e9cb07a8453c03c1fe1485 Mon Sep 17 00:00:00 2001 From: QuantumRipple Date: Mon, 22 Sep 2025 13:27:49 -0500 Subject: [PATCH] Update Makefile Newer GCC versions won't build. Explicitly use older standard. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 84e9a95..70b2904 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ swcursor: swcursor.c swcursor-window.h swcursor-window.c - gcc `pkg-config --cflags x11 xext gtk+-3.0` -o swcursor swcursor.c swcursor-window.c `pkg-config --libs x11 xext gtk+-3.0` + gcc -std=gnu17 `pkg-config --cflags x11 xext gtk+-3.0` -o swcursor swcursor.c swcursor-window.c `pkg-config --libs x11 xext gtk+-3.0` clean: rm -f swcursor