diff options
author | lloyd <[email protected]> | 2012-06-08 22:33:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-08 22:33:01 +0000 |
commit | a4b2dba2bfea267e1a1535fbe33103f4c2153724 (patch) | |
tree | 4d37fe1951c13fc577c63f512e35dde20511ffad /configure.py | |
parent | 23d037076cc8ecd9cdce0b6c53b2f0174c5f536c (diff) |
Make a proper wrapper in util for SQLite3, update the TLS session
manager to use it. Add --with-sqlite to configure.py
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.py b/configure.py index 32c8bfab5..baad4fd84 100755 --- a/configure.py +++ b/configure.py @@ -341,12 +341,10 @@ def process_command_line(args): mods_group.add_option('--no-autoload', action='store_true', default=False, help='disable automatic loading') - for lib in ['OpenSSL', 'GNU MP', 'Bzip2', 'Zlib']: - - mod = lib.lower().replace(' ', '') + for mod in ['sqlite', 'openssl', 'gnump', 'bzip2', 'zlib']: mods_group.add_option('--with-%s' % (mod), - help='add support for using %s' % (lib), + help='add support for using %s' % (mod), action='append_const', const=mod, dest='enabled_modules') |