diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-06 12:59:52 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-06 12:59:52 +0000 |
| commit | 3b6af76dc7a9089a35d2d2815d4fb8fb55876d1b (patch) | |
| tree | 5659b2fa0284fd5d6502432d76d725be941e897c /wscript | |
| parent | 31d33f861023709e02641d12bbf7a1a449c82007 (diff) | |
Try to improve i18n a bit.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -89,7 +89,8 @@ def configure(conf): conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True) conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True) - conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True) + if conf.options.target_windows is False: + conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True) conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True) if conf.options.static: |
