summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-09-10 16:51:43 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-09-10 16:51:43 +0000
commit396eed1d1b54a1a51f0da0aa6d19bc4da61ce0a9 (patch)
treee6e38514a07e8002da04e305738a24d4684a3316
parente70ba8a4697466f26050cf75c8b6fd41f43a2410 (diff)
Disable -Wshadow again, since it breaks builds on vax with gcc3.
-rw-r--r--usr.bin/openssl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/Makefile b/usr.bin/openssl/Makefile
index 88b9511edfa..015d9abeb6b 100644
--- a/usr.bin/openssl/Makefile
+++ b/usr.bin/openssl/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2014/09/01 20:54:37 doug Exp $
+# $OpenBSD: Makefile,v 1.3 2014/09/10 16:51:42 jsing Exp $
PROG= openssl
LDADD= -lssl -lcrypto
@@ -10,7 +10,7 @@ CFLAGS+= -Wformat
CFLAGS+= -Wformat-security
CFLAGS+= -Wimplicit
CFLAGS+= -Wreturn-type
-CFLAGS+= -Wshadow
+#CFLAGS+= -Wshadow
CFLAGS+= -Wtrigraphs
CFLAGS+= -Wuninitialized
CFLAGS+= -Wunused