diff options
author | sthen <> | 2012-07-11 11:02:48 +0000 |
---|---|---|
committer | sthen <> | 2012-07-11 11:02:48 +0000 |
commit | afb25265bd9be6cd38185c3953b58d628a497c6d (patch) | |
tree | 15197f3f4be11e6c7eeff91993c7c7b3dbad50cb /src/usr.sbin/openssl | |
parent | 6c48fe02c9be6a27407342904be1a8f1e7620d19 (diff) | |
download | openbsd-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/Makefile | 3 |
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 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
@@ -11,6 +11,7 @@ SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} | |||
11 | 11 | ||
12 | CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 | 12 | CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 |
13 | CFLAGS+= -DOPENSSL_NO_MDC2 | 13 | CFLAGS+= -DOPENSSL_NO_MDC2 |
14 | CFLAGS+= -DOPENSSL_NO_SSL2 | ||
14 | CFLAGS+= -I${SSLEAY_SRC_TOP} | 15 | CFLAGS+= -I${SSLEAY_SRC_TOP} |
15 | 16 | ||
16 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ | 17 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ |