2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 01:45:19 +01:00

wscript: make libdl optional for systems that include it in libc

This commit is contained in:
Henry Ford 2023-11-22 15:25:38 -05:00 committed by Alibek Omarov
parent e7e1677786
commit 652b1804a8

View File

@ -409,7 +409,7 @@ def configure(conf):
for i in a:
conf.check_cc(lib = i)
else:
conf.check_cc(lib='dl')
conf.check_cc(lib='dl', mandatory = False)
conf.check_cc(lib='m')