From ae3388c5e09cb267a8bba8d01afd168d7955031d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 20 Feb 2007 06:17:50 -0800 Subject: [PATCH] Temporarily add -Wno-unused-function Generally, this is a useful warning to have turned on, but for now while we have some unused functions still in-progress, let's turn it off so that we can have clean, warning-free compilation. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 54d45f0..732fbf1 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ WARN_CFLAGS=-Wall -Wpointer-arith -Wstrict-prototypes \ -Wmissing-prototypes -Wmissing-declarations \ - -Wnested-externs -fno-strict-aliasing + -Wnested-externs -fno-strict-aliasing -Wno-unused-function KUB_CFLAGS=$(WARN_CFLAGS) `pkg-config --cflags gtk+-2.0 librsvg-2.0` -DGTK_DISABLE_DEPRECATED KUB_LDFLAGS=`pkg-config --libs gtk+-2.0 librsvg-2.0` -- 2.43.0