From f402495b24e1c5b6a7bfd6928a1c1876107854aa Mon Sep 17 00:00:00 2001 From: nillerusr Date: Wed, 13 Dec 2023 21:38:09 +0300 Subject: [PATCH] wscript: make bzip2 mandatory #321 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index b1ab3c7f..efa5bc68 100644 --- a/wscript +++ b/wscript @@ -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!