summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiod <>2014-07-02 20:37:06 +0000
committermiod <>2014-07-02 20:37:06 +0000
commit78f55ef8583d41d6ad8f3eeb59c34ab38de8e552 (patch)
tree4d7d29a9f27a6b9a0fcfc0ac5a8fc9ce10f9b6f9
parentd203adce36c96cd7975de39c5429d525fa69c787 (diff)
downloadopenbsd-78f55ef8583d41d6ad8f3eeb59c34ab38de8e552.tar.gz
openbsd-78f55ef8583d41d6ad8f3eeb59c34ab38de8e552.tar.bz2
openbsd-78f55ef8583d41d6ad8f3eeb59c34ab38de8e552.zip
Warnings. I haz them.
-rw-r--r--src/usr.sbin/openssl/Makefile13
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
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
5MAN1= openssl.1 5MAN1= openssl.1
6 6
7CFLAGS+= -Wall 7CFLAGS+= -Wall -Werror
8CFLAGS+= -Wformat
9CFLAGS+= -Wformat-security
10CFLAGS+= -Wimplicit
11CFLAGS+= -Wreturn-type
12#CFLAGS+= -Wshadow
13CFLAGS+= -Wtrigraphs
14CFLAGS+= -Wuninitialized
15CFLAGS+= -Wunused
16
8CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL 17CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL
9 18
10SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ 19SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \