diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-07-01 18:14:26 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-07-04 15:03:04 +0200 |
commit | aae6c075aa500abdb9c72fea9bbb85cb4e735e65 (patch) | |
tree | 1c2055b447ca44df399ea30645c6162df7b2f95e /platform/server/detect.py | |
parent | 9e303ef71ce18ffd01ed7a63badf59ea015089c7 (diff) |
Remove libwebsocket. No longer used, yay!
Diffstat (limited to 'platform/server/detect.py')
-rw-r--r-- | platform/server/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py index 2b13edee1e..185dce8128 100644 --- a/platform/server/detect.py +++ b/platform/server/detect.py @@ -196,8 +196,8 @@ def configure(env): # mbedTLS does not provide a pkgconfig config yet. See https://github.com/ARMmbed/mbedtls/issues/228 env.Append(LIBS=['mbedtls', 'mbedcrypto', 'mbedx509']) - 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_miniupnpc']: # No pkgconfig file so far, hardcode default paths. |