diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Make_global.am | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -50,6 +50,7 @@ Max Kellermann <max@duempel.org>: o fix shadow warnings by renaming variables or making them local o remove "-g" from Makefile.am, this should be specified by the user +o enable C99 mode = conntrackd = o resolve global variable "alarm" conflict with alarm() function in unistd.h. diff --git a/Make_global.am b/Make_global.am index 252abf9..3ff531f 100644 --- a/Make_global.am +++ b/Make_global.am @@ -1,6 +1,6 @@ INCLUDES=$(all_includes) -I$(top_srcdir)/include -AM_CFLAGS = -W -Wall \ +AM_CFLAGS = -std=gnu99 -W -Wall \ -Werror \ -Wmissing-prototypes -Wwrite-strings -Wcast-qual -Wfloat-equal -Wshadow -Wpointer-arith -Wbad-function-cast -Wsign-compare -Waggregate-return -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wstrict-prototypes -Wundef \ -Wno-unused-parameter |