From a3b9887113ef44ac9fd2baa5dae28428ee8649e5 Mon Sep 17 00:00:00 2001 From: Rene Kita Date: Fri, 15 Apr 2022 13:11:21 +0200 Subject: [PATCH] Enable -Wnull-dereference by default --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 42027d6..7241e0c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -35,7 +35,8 @@ RC_DIR = @RC_DIR@ ETC_DIR = $(sysconfdir) 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@ CPPFLAGS = @CPPFLAGS@ DEFS = @DEFS@ -DAUXBIN_DIR=\"$(AUXBIN_DIR)\" \