Skip to content

Commit

Permalink
wscript: make bzip2 mandatory #321
Browse files Browse the repository at this point in the history
  • Loading branch information
nillerusr committed Dec 13, 2023
1 parent b45295e commit f402495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def options(opt):
def check_deps(conf):
if conf.env.DEST_OS != 'win32':
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)

if not conf.env.LIB_M: # HACK: already added in xcompile!
Expand Down

0 comments on commit f402495

Please sign in to comment.