diff options
author | miod <> | 2014-07-02 20:37:06 +0000 |
---|---|---|
committer | miod <> | 2014-07-02 20:37:06 +0000 |
commit | 78f55ef8583d41d6ad8f3eeb59c34ab38de8e552 (patch) | |
tree | 4d7d29a9f27a6b9a0fcfc0ac5a8fc9ce10f9b6f9 | |
parent | d203adce36c96cd7975de39c5429d525fa69c787 (diff) | |
download | openbsd-78f55ef8583d41d6ad8f3eeb59c34ab38de8e552.tar.gz openbsd-78f55ef8583d41d6ad8f3eeb59c34ab38de8e552.tar.bz2 openbsd-78f55ef8583d41d6ad8f3eeb59c34ab38de8e552.zip |
Warnings. I haz them.
-rw-r--r-- | src/usr.sbin/openssl/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile index 1cb079571f..3bfd20117d 100644 --- a/src/usr.sbin/openssl/Makefile +++ b/src/usr.sbin/openssl/Makefile | |||
@@ -1,10 +1,19 @@ | |||
1 | # $OpenBSD: Makefile,v 1.29 2014/05/29 18:15:21 beck Exp $ | 1 | # $OpenBSD: Makefile,v 1.30 2014/07/02 20:37:06 miod Exp $ |
2 | 2 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
5 | MAN1= openssl.1 | 5 | MAN1= openssl.1 |
6 | 6 | ||
7 | CFLAGS+= -Wall | 7 | CFLAGS+= -Wall -Werror |
8 | CFLAGS+= -Wformat | ||
9 | CFLAGS+= -Wformat-security | ||
10 | CFLAGS+= -Wimplicit | ||
11 | CFLAGS+= -Wreturn-type | ||
12 | #CFLAGS+= -Wshadow | ||
13 | CFLAGS+= -Wtrigraphs | ||
14 | CFLAGS+= -Wuninitialized | ||
15 | CFLAGS+= -Wunused | ||
16 | |||
8 | CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL | 17 | CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL |
9 | 18 | ||
10 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ | 19 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ |