From: Carl Worth Date: Tue, 20 Feb 2007 14:17:50 +0000 (-0800) Subject: Temporarily add -Wno-unused-function X-Git-Url: https://git.cworth.org/git?p=kub;a=commitdiff_plain;h=ae3388c5e09cb267a8bba8d01afd168d7955031d 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. --- 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`