aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorPatrick Wildt <[email protected]>2017-06-28 16:33:55 +0200
committerPatrick Wildt <[email protected]>2017-07-05 11:05:49 +0200
commit783798ca424fe44b36bdec386da91da75e856cdd (patch)
tree5e4604dc849622960a561ab0cee99b646cc577dd /configure.py
parent38fe6d3ab3e8a4be2becd5fd0b8c7bb4a8f1e192 (diff)
BearSSL: Initial support and hash tests
BearSSL is an implementation of the SSL/TLS protocol in C aiming to be correct and secure, small and highly portable. Thus making it nicer to be included in a rather sparse bootloader. This commit adds support for BearSSL's hash routines only, with more stuff coming up in following commits. The goal is to be able to test BearSSL using Botan's extensive testsuite.
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 184e64b3d..978744979 100755
--- a/configure.py
+++ b/configure.py
@@ -432,7 +432,7 @@ def process_command_line(args): # pylint: disable=too-many-locals
help='minimize build')
# Should be derived from info.txt but this runs too early
- third_party = ['boost', 'bzip2', 'lzma', 'openssl', 'sqlite3', 'zlib', 'tpm']
+ third_party = ['bearssl', 'boost', 'bzip2', 'lzma', 'openssl', 'sqlite3', 'zlib', 'tpm']
for mod in third_party:
mods_group.add_option('--with-%s' % (mod),