aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2017-01-11 13:50:07 +0100
committerRenĂ© Korthaus <[email protected]>2017-01-11 13:50:07 +0100
commit125057ffc4802e36a6d9c8b0bf6bc63eea3b418a (patch)
tree5d981767c546957f0ad4e251625795c5feb6aed5 /configure.py
parent08b96d4b6c06063a7a116790bb81f8e213bc23ce (diff)
Enable PKCS11 module by default and remove --with-pkcs11 option
The pkcs11 module once required the pkcs11 headers as an external dependency, but the headers were included a while ago. Still, the module was set to be load_on vendor. Instead, we can enable the module by default now.
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 2f3857aa6..6142a0eab 100755
--- a/configure.py
+++ b/configure.py
@@ -408,7 +408,7 @@ def process_command_line(args):
help='minimize build')
# Should be derived from info.txt but this runs too early
- third_party = ['boost', 'bzip2', 'lzma', 'openssl', 'sqlite3', 'zlib', 'tpm', 'pkcs11']
+ third_party = ['boost', 'bzip2', 'lzma', 'openssl', 'sqlite3', 'zlib', 'tpm']
for mod in third_party:
mods_group.add_option('--with-%s' % (mod),