summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2017-09-01 11:31:23 +0000
committerotto <otto@openbsd.org>2017-09-01 11:31:23 +0000
commita64eb5d90a785f1b8a4eb105fc511eb46d1e7e49 (patch)
tree13fe00d3f3707ebca5c445b8a858023add023944
parentfree() the memory we allocate in dmesg.c. While this memory would be (diff)
downloadwireguard-openbsd-a64eb5d90a785f1b8a4eb105fc511eb46d1e7e49.tar.xz
wireguard-openbsd-a64eb5d90a785f1b8a4eb105fc511eb46d1e7e49.zip
disable a few warnings so we can start to see the relevant ones;
ok sthen@
-rw-r--r--usr.sbin/bind/configure4
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*)