diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-09-01 11:31:24 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-09-01 11:31:24 +0000 |
commit | 0c61d2322b8d3968e4c79f155c3278376153f548 (patch) | |
tree | 0292fb6f5ee9f83377ad81b33047dcb0b3c59b00 /usr.sbin | |
parent | 9acbb37aeaf66fdc1b892fab8d2636cecbecbb15 (diff) |
disable a few warnings so we can start to see the relevant ones;
ok sthen@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bind/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bind/configure b/usr.sbin/bind/configure index 30126599eb2..889e7e0c323 100644 --- a/usr.sbin/bind/configure +++ b/usr.sbin/bind/configure @@ -8172,11 +8172,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "$FNOSTRICTALIASING" = "yes"; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } - STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith -fno-strict-aliasing" + STD_CWARNINGS="$STD_CWARNINGS -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith -fno-strict-aliasing" else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } - STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith" + STD_CWARNINGS="$STD_CWARNINGS -Wall -Wextra -Wno-unused-parameter -Wno-unused-function -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith" fi case "$host" in *-hp-hpux*) |