diff options
author | lloyd <[email protected]> | 2012-07-09 17:33:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-07-09 17:33:57 +0000 |
commit | 89f327ba20562edfb84dcad2dfc3a18c01e1d35f (patch) | |
tree | f0716dc1c255b968163995109b138e8db2480962 /configure.py | |
parent | 3cc4f98327ac3ed5f1ceea1dc44c07bd80592c1b (diff) |
Add a LZMA filter contributed by Vojtech Kral
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index ef89e91cc..7b8941429 100755 --- a/configure.py +++ b/configure.py @@ -341,7 +341,7 @@ def process_command_line(args): mods_group.add_option('--no-autoload', action='store_true', default=False, help='disable automatic loading') - for mod in ['sqlite3', 'openssl', 'gnump', 'bzip2', 'zlib']: + for mod in ['sqlite3', 'openssl', 'gnump', 'bzip2', 'zlib', 'lzma']: mods_group.add_option('--with-%s' % (mod), help='add support for using %s' % (mod), |