Drop libpthread check, it doesn't work with android toolchain
should be using -pthread instead anyway
This commit is contained in:
parent
f12b25b9f3
commit
03cb0c77fd
1 changed files with 1 additions and 4 deletions
|
@ -344,10 +344,7 @@ if env["prereqs"]:
|
|||
def CheckAsio(conf):
|
||||
if env["PLATFORM"] == 'win32':
|
||||
conf.env.Append(LIBS = ["libws2_32"])
|
||||
have_libpthread = True
|
||||
else:
|
||||
have_libpthread = conf.CheckLib("pthread")
|
||||
return have_libpthread & \
|
||||
return \
|
||||
conf.CheckBoost("system") & \
|
||||
conf.CheckBoost("asio", header_only = True) & \
|
||||
conf.CheckBoost("context") & \
|
||||
|
|
Loading…
Add table
Reference in a new issue