mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-05 18:05:16 +00:00
Be more strict with WARNS now -- the GCC 3.1 turmoil is behind us.
This commit is contained in:
parent
3238ad66ae
commit
bf4ca1009b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99542
@ -11,6 +11,9 @@
|
||||
.if !defined(NO_WARNS)
|
||||
. if defined(WARNS)
|
||||
. if ${WARNS} > 0
|
||||
. if !defined(NO_WERROR)
|
||||
CFLAGS += -Werror
|
||||
. endif
|
||||
. endif
|
||||
. if ${WARNS} > 1
|
||||
CFLAGS += -Wall -Wno-format-y2k
|
||||
@ -42,6 +45,9 @@ WFORMAT = 1
|
||||
. if ${WFORMAT} > 0
|
||||
#CFLAGS += -Wformat-nonliteral -Wformat-security -Wno-format-extra-args
|
||||
CFLAGS += -Wformat=2 -Wno-format-extra-args
|
||||
. if !defined(NO_WERROR)
|
||||
CFLAGS += -Werror
|
||||
. endif
|
||||
. endif
|
||||
. endif
|
||||
.endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user