Skip to content

Commit

Permalink
engine: wscript: fix pthreads check by explicitly checking it in C mode
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Jan 23, 2024
1 parent 443317b commit aa54309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def configure(conf):
conf.define('XASH_NO_LIBDL',1)

if not conf.env.DEST_OS in ['win32', 'android'] and not conf.options.NO_ASYNC_RESOLVE:
conf.check_pthreads()
conf.check_pthreads(mode='c')

if conf.env.DEST_OS == 'linux':
conf.check_cc(lib='rt')
Expand Down

0 comments on commit aa54309

Please sign in to comment.