1 ifeq ($(filter no-error,$(DEVOPTS)),)
4 ifneq ($(filter pedantic,$(DEVOPTS)),)
6 # don't warn for each N_ use
7 CFLAGS += -DUSE_PARENS_AROUND_GETTEXT_N=0
10 CFLAGS += -Wdeclaration-after-statement
11 CFLAGS += -Wformat-security
12 CFLAGS += -Wno-format-zero-length
13 CFLAGS += -Wold-style-definition
15 CFLAGS += -Wpointer-arith
16 CFLAGS += -Wstrict-prototypes
20 ifndef COMPILER_FEATURES
21 COMPILER_FEATURES := $(shell ./detect-compiler $(CC))
24 ifneq ($(filter clang4,$(COMPILER_FEATURES)),)
25 CFLAGS += -Wtautological-constant-out-of-range-compare
28 ifneq ($(or $(filter gcc6,$(COMPILER_FEATURES)),$(filter clang4,$(COMPILER_FEATURES))),)
30 # if a function is public, there should be a prototype and the right
31 # header file should be included. If not, it should be static.
32 CFLAGS += -Wmissing-prototypes
33 ifeq ($(filter extra-all,$(DEVOPTS)),)
34 # These are disabled because we have these all over the place.
35 CFLAGS += -Wno-empty-body
36 CFLAGS += -Wno-missing-field-initializers
37 CFLAGS += -Wno-sign-compare
38 CFLAGS += -Wno-unused-parameter
42 # uninitialized warnings on gcc 4.9.2 in xdiff/xdiffi.c and config.c
43 # not worth fixing since newer compilers correctly stop complaining
44 ifneq ($(filter gcc4,$(COMPILER_FEATURES)),)
45 ifeq ($(filter gcc5,$(COMPILER_FEATURES)),)
46 CFLAGS += -Wno-uninitialized