summaryrefslogtreecommitdiff
path: root/platform/haiku/detect.py
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-07-04 15:55:33 +0200
committerGitHub <noreply@github.com>2019-07-04 15:55:33 +0200
commit550f436f8fbea86984a845c821270fba78189143 (patch)
tree93985664212af0602cea06547273015ee580acc2 /platform/haiku/detect.py
parent7b569e91c0c6b84965cad416b8e86dcfdacbcfc4 (diff)
parent3380dc963895d1f97d4f06c3a71fe15d1c04d9fe (diff)
Merge pull request #30263 from Faless/ws/wslay_pr
Use wslay as a WebSocket library
Diffstat (limited to 'platform/haiku/detect.py')
-rw-r--r--platform/haiku/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/haiku/detect.py b/platform/haiku/detect.py
index 28d52e79a2..2a3e165069 100644
--- a/platform/haiku/detect.py
+++ b/platform/haiku/detect.py
@@ -128,8 +128,8 @@ def configure(env):
if any(platform.machine() in s for s in list_of_x86):
env["x86_libtheora_opt_gcc"] = True
- if not env['builtin_libwebsockets']:
- env.ParseConfig('pkg-config libwebsockets --cflags --libs')
+ if not env['builtin_wslay']:
+ env.ParseConfig('pkg-config libwslay --cflags --libs')
if not env['builtin_mbedtls']:
# mbedTLS does not provide a pkgconfig config yet. See https://github.com/ARMmbed/mbedtls/issues/228