summaryrefslogtreecommitdiff
path: root/usr.sbin/openssl
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2012-07-11 11:02:49 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2012-07-11 11:02:49 +0000
commit827c2f9cfa50192dcf40fbcdf809d4a177e593b0 (patch)
treef135f23e099eeab58c9e5cbca1731d9d192da1bc /usr.sbin/openssl
parent4adda1767a38d51cee4c16eacea7488202647f36 (diff)
Disable SSLv2 in OpenSSL. No objections from djm.
Brad, jasper and naddy helped with test builds, fixing ports, etc.
Diffstat (limited to 'usr.sbin/openssl')
-rw-r--r--usr.sbin/openssl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile
index 20307fcbfcf..a3948a7ae0d 100644
--- a/usr.sbin/openssl/Makefile
+++ b/usr.sbin/openssl/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.19 2010/10/01 23:04:33 djm Exp $
+# $OpenBSD: Makefile,v 1.20 2012/07/11 11:02:48 sthen Exp $
PROG= openssl
LDADD= -lssl -lcrypto
@@ -11,6 +11,7 @@ SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST}
CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
CFLAGS+= -DOPENSSL_NO_MDC2
+CFLAGS+= -DOPENSSL_NO_SSL2
CFLAGS+= -I${SSLEAY_SRC_TOP}
SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \