aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2021-10-23 14:37:02 -0400
committerJack Lloyd <[email protected]>2021-10-28 17:24:09 -0400
commitb77e5a1b663a8cfa0cfa90fd052a23eb70e9e31d (patch)
tree0a3e0341143cb34ebef86836393fd0e8d8c350e8 /configure.py
parent81e33dd31169fab2354c1ca45d59dd43a841a6bc (diff)
Remove the OpenSSL provider
Starting in OpenSSL 3.0, most of the functionality which we need to implement the OpenSSL provider is deprecated. Rather than reimplement the whole provider in order to allow it to continue to work in the future, just remove it. Efforts would be better spent doing more optimization work rather than chasing OpenSSL's API changes.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 9b0255625..7e40af668 100755
--- a/configure.py
+++ b/configure.py
@@ -563,7 +563,7 @@ def process_command_line(args): # pylint: disable=too-many-locals,too-many-state
help='minimize build')
# Should be derived from info.txt but this runs too early
- third_party = ['boost', 'bzip2', 'lzma', 'openssl', 'commoncrypto', 'sqlite3', 'zlib', 'tpm']
+ third_party = ['boost', 'bzip2', 'lzma', 'commoncrypto', 'sqlite3', 'zlib', 'tpm']
for mod in third_party:
mods_group.add_option('--with-%s' % (mod),