diff options
author | 2001-06-23 17:11:01 +0000 | |
---|---|---|
committer | 2001-06-23 17:11:01 +0000 | |
commit | 7f32b70427b6927b6747e2053af2bf356da78b75 (patch) | |
tree | a333562068694fc16aa072613d67be5bc3c9939b | |
parent | fix import for (broken?) ssh.com/f-secure private keys (diff) | |
download | wireguard-openbsd-7f32b70427b6927b6747e2053af2bf356da78b75.tar.xz wireguard-openbsd-7f32b70427b6927b6747e2053af2bf356da78b75.zip |
turn off -Wstrict-prototypes (for atomicio.h)
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index 5b572e89368..e476588ba1e 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,9 +1,15 @@ -# $OpenBSD: Makefile.inc,v 1.14 2001/06/23 15:12:17 itojun Exp $ +# $OpenBSD: Makefile.inc,v 1.15 2001/06/23 17:11:01 markus Exp $ CFLAGS+= -I${.CURDIR}/.. CFLAGS+= -Wall -CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized +#CFLAGS+= -Werror +CFLAGS+= -Wpointer-arith +CFLAGS+= -Wno-uninitialized +#CFLAGS+= -Wstrict-prototypes +CFLAGS+= -Wmissing-prototypes + +#DEBUG=-g .include <bsd.obj.mk> |