Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2020 19:35:37 +0000 (UTC)
From:      Gordon Tetlow <gordon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362620 - head/secure/lib/libcrypto
Message-ID:  <202006251935.05PJZbJ2077013@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gordon
Date: Thu Jun 25 19:35:37 2020
New Revision: 362620
URL: https://svnweb.freebsd.org/changeset/base/362620

Log:
  Revert OPENSSL_NO_SSL3_METHOD to keep ABI compatibility.
  
  This define caused a couple of symbols to disappear. To keep ABI
  compatibility, we are going to keep the symbols exposed, but leave SSLv3 as
  not in the default config (this is what OPENSSL_NO_SSL3 achieves). The
  ramifications of this is an application can still use SSLv3 if it
  specifically calls the SSLv3_method family of APIs.
  
  Reported by:	kib, others
  Reviewed by:	kib
  Differential Revision:	https://reviews.freebsd.org/D25451

Modified:
  head/secure/lib/libcrypto/opensslconf.h.in

Modified: head/secure/lib/libcrypto/opensslconf.h.in
==============================================================================
--- head/secure/lib/libcrypto/opensslconf.h.in	Thu Jun 25 19:27:22 2020	(r362619)
+++ head/secure/lib/libcrypto/opensslconf.h.in	Thu Jun 25 19:35:37 2020	(r362620)
@@ -79,9 +79,6 @@ extern "C" {
 #ifndef OPENSSL_NO_SSL3
 # define OPENSSL_NO_SSL3
 #endif
-#ifndef OPENSSL_NO_SSL3_METHOD
-# define OPENSSL_NO_SSL3_METHOD
-#endif
 #ifndef OPENSSL_NO_UBSAN
 # define OPENSSL_NO_UBSAN
 #endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006251935.05PJZbJ2077013>