diff options
author | 2012-07-11 11:02:48 +0000 | |
---|---|---|
committer | 2012-07-11 11:02:48 +0000 | |
commit | 4e5e78f35b4bf1b4d5f535ce0033256983675f41 (patch) | |
tree | 9ae8dabf73b4aeff2b6b2268e643233326508599 /lib/libssl/ssl | |
parent | for now, restrict hibernate to root in the acpi ioctl kernel interface. (diff) | |
download | wireguard-openbsd-4e5e78f35b4bf1b4d5f535ce0033256983675f41.tar.xz wireguard-openbsd-4e5e78f35b4bf1b4d5f535ce0033256983675f41.zip |
Disable SSLv2 in OpenSSL. No objections from djm.
Brad, jasper and naddy helped with test builds, fixing ports, etc.
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r-- | lib/libssl/ssl/Makefile | 3 | ||||
-rw-r--r-- | lib/libssl/ssl/shlib_version | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index 8926ce54239..3215b33574c 100644 --- a/lib/libssl/ssl/Makefile +++ b/lib/libssl/ssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.23 2010/10/01 23:02:02 djm Exp $ +# $OpenBSD: Makefile,v 1.24 2012/07/11 11:02:48 sthen Exp $ LIB= ssl WANTLINT= @@ -10,6 +10,7 @@ LSSL_SRC= ${.CURDIR}/../${SSLEAYDIST}/ssl CFLAGS+= -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE CFLAGS+= -DOPENSSL_NO_MDC2 CFLAGS+= -DOPENSSL_NO_RC5 -DOPENSSL_NO_KRB5 +CFLAGS+= -DOPENSSL_NO_SSL2 CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} -I${.CURDIR}/../${SSLEAYDIST}/crypto SRCS=\ diff --git a/lib/libssl/ssl/shlib_version b/lib/libssl/ssl/shlib_version index 730231c38d0..94727e17b3a 100644 --- a/lib/libssl/ssl/shlib_version +++ b/lib/libssl/ssl/shlib_version @@ -1,2 +1,2 @@ -major=17 -minor=1 +major=18 +minor=0 |