From fb9ccfed49af503b57aa47df80505d12332710d2 Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Thu, 7 Sep 2023 02:10:48 +0930 Subject: [PATCH] Fix building with Gtk 4.10 Add -Wno-error=deprecated-declarations to the Makefile so that it can build when using Gtk 4.10. --- src/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile b/src/Makefile index 32e87de..c74fa3a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,6 +10,7 @@ DEPFLAGS = -MT $@ -MMD -MP -MF $(DEPDIR)/$*.d CFLAGS := -Wall -Werror -ggdb -fno-omit-frame-pointer -O2 -D_FORTIFY_SOURCE=2 CFLAGS += -DVERSION=\"$(VERSION)\" +CFLAGS += -Wno-error=deprecated-declarations PKG_CONFIG=pkg-config