wscript: make bzip2 mandatory #321
This commit is contained in:
parent
543f3091eb
commit
ad2930fdf0
1 changed files with 1 additions and 1 deletions
2
wscript
2
wscript
|
@ -332,7 +332,7 @@ def options(opt):
|
||||||
def check_deps(conf):
|
def check_deps(conf):
|
||||||
if conf.env.DEST_OS != 'win32':
|
if conf.env.DEST_OS != 'win32':
|
||||||
conf.check_cc(lib='dl', mandatory=False)
|
conf.check_cc(lib='dl', mandatory=False)
|
||||||
conf.check_cc(lib='bz2', mandatory=False)
|
conf.check_cc(lib='bz2', mandatory=True)
|
||||||
conf.check_cc(lib='rt', mandatory=False)
|
conf.check_cc(lib='rt', mandatory=False)
|
||||||
|
|
||||||
if not conf.env.LIB_M: # HACK: already added in xcompile!
|
if not conf.env.LIB_M: # HACK: already added in xcompile!
|
||||||
|
|
Loading…
Add table
Reference in a new issue