summaryrefslogtreecommitdiff
path: root/src/usr.sbin/openssl
diff options
context:
space:
mode:
authorsthen <>2012-07-11 11:02:48 +0000
committersthen <>2012-07-11 11:02:48 +0000
commitafb25265bd9be6cd38185c3953b58d628a497c6d (patch)
tree15197f3f4be11e6c7eeff91993c7c7b3dbad50cb /src/usr.sbin/openssl
parent6c48fe02c9be6a27407342904be1a8f1e7620d19 (diff)
downloadopenbsd-afb25265bd9be6cd38185c3953b58d628a497c6d.tar.gz
openbsd-afb25265bd9be6cd38185c3953b58d628a497c6d.tar.bz2
openbsd-afb25265bd9be6cd38185c3953b58d628a497c6d.zip
Disable SSLv2 in OpenSSL. No objections from djm.
Brad, jasper and naddy helped with test builds, fixing ports, etc.
Diffstat (limited to 'src/usr.sbin/openssl')
-rw-r--r--src/usr.sbin/openssl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile
index 20307fcbfc..a3948a7ae0 100644
--- a/src/usr.sbin/openssl/Makefile
+++ b/src/usr.sbin/openssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.19 2010/10/01 23:04:33 djm Exp $ 1# $OpenBSD: Makefile,v 1.20 2012/07/11 11:02:48 sthen Exp $
2 2
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
@@ -11,6 +11,7 @@ SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST}
11 11
12CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 12CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
13CFLAGS+= -DOPENSSL_NO_MDC2 13CFLAGS+= -DOPENSSL_NO_MDC2
14CFLAGS+= -DOPENSSL_NO_SSL2
14CFLAGS+= -I${SSLEAY_SRC_TOP} 15CFLAGS+= -I${SSLEAY_SRC_TOP}
15 16
16SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ 17SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \