diff options
author | jsing <> | 2014-09-10 16:51:42 +0000 |
---|---|---|
committer | jsing <> | 2014-09-10 16:51:42 +0000 |
commit | e8adbeb2a80469fdc94d71f996f33b0d79c118d7 (patch) | |
tree | 5ffcba97c300cdf7c035023acffc335e89bd4c1d /src | |
parent | 048f1f25d005e2ac8c447305d3b4be5dd6f7d168 (diff) | |
download | openbsd-e8adbeb2a80469fdc94d71f996f33b0d79c118d7.tar.gz openbsd-e8adbeb2a80469fdc94d71f996f33b0d79c118d7.tar.bz2 openbsd-e8adbeb2a80469fdc94d71f996f33b0d79c118d7.zip |
Disable -Wshadow again, since it breaks builds on vax with gcc3.
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/Makefile b/src/usr.bin/openssl/Makefile index 88b9511edf..015d9abeb6 100644 --- a/src/usr.bin/openssl/Makefile +++ b/src/usr.bin/openssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2014/09/01 20:54:37 doug Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2014/09/10 16:51:42 jsing Exp $ |
2 | 2 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
@@ -10,7 +10,7 @@ CFLAGS+= -Wformat | |||
10 | CFLAGS+= -Wformat-security | 10 | CFLAGS+= -Wformat-security |
11 | CFLAGS+= -Wimplicit | 11 | CFLAGS+= -Wimplicit |
12 | CFLAGS+= -Wreturn-type | 12 | CFLAGS+= -Wreturn-type |
13 | CFLAGS+= -Wshadow | 13 | #CFLAGS+= -Wshadow |
14 | CFLAGS+= -Wtrigraphs | 14 | CFLAGS+= -Wtrigraphs |
15 | CFLAGS+= -Wuninitialized | 15 | CFLAGS+= -Wuninitialized |
16 | CFLAGS+= -Wunused | 16 | CFLAGS+= -Wunused |