Enable -Wnull-dereference by default

This commit is contained in:
Rene Kita
2022-04-15 13:11:21 +02:00
parent e8a41ecfcc
commit a3b9887113

View File

@@ -35,7 +35,8 @@ RC_DIR = @RC_DIR@
ETC_DIR = $(sysconfdir) ETC_DIR = $(sysconfdir)
CONF_DIR = $(sysconfdir)/$(PACKAGE) CONF_DIR = $(sysconfdir)/$(PACKAGE)
CFLAGS = -Wall -I. -I$(top_srcdir) @CFLAGS@ $(CPPFLAGS) $(DEFS) $(OPTS) WARNINGS= -Wall -Wnull-dereference
CFLAGS = $(WARNINGS) -I. -I$(top_srcdir) @CFLAGS@ $(CPPFLAGS) $(DEFS) $(OPTS)
WCCFLAGS = @WCCFLAGS@ WCCFLAGS = @WCCFLAGS@
CPPFLAGS = @CPPFLAGS@ CPPFLAGS = @CPPFLAGS@
DEFS = @DEFS@ -DAUXBIN_DIR=\"$(AUXBIN_DIR)\" \ DEFS = @DEFS@ -DAUXBIN_DIR=\"$(AUXBIN_DIR)\" \