diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-06-07 11:23:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-07 11:23:50 +0200 |
commit | 37d01b057d4c2108a786fd4e71e920d6c73191df (patch) | |
tree | ebb74de9c5c8c2b9eecb898121307755ca5ba0a7 /modules | |
parent | b4c65093d72bf9b48cc3ddce50a0d913d3d75ed3 (diff) | |
parent | d0811ed3f9604b2dab755ab6df0a2950fd1ccede (diff) |
Merge pull request #19408 from akien-mga/3rdparty-copyright-unbundling
Update COPYRIGHT and allows unbundling libwebsockets and miniupnpc on Linux/BSD
Diffstat (limited to 'modules')
-rw-r--r-- | modules/websocket/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/websocket/SCsub b/modules/websocket/SCsub index b36f1beacd..c9cbdfbc03 100644 --- a/modules/websocket/SCsub +++ b/modules/websocket/SCsub @@ -7,7 +7,7 @@ Import('env_modules') env_lws = env_modules.Clone() -thirdparty_dir = "#thirdparty/lws/" +thirdparty_dir = "#thirdparty/libwebsockets/" helper_dir = "win32helpers/" thirdparty_sources = [ "client/client.c", @@ -67,7 +67,7 @@ else: env_lws.add_source_files(env.modules_sources, thirdparty_sources) env_lws.Append(CPPPATH=[thirdparty_dir]) - wrapper_includes = ["#thirdparty/lws/mbedtls_wrapper/include/" + inc for inc in ["internal", "openssl", "platform", ""]] + wrapper_includes = ["#thirdparty/libwebsockets/mbedtls_wrapper/include/" + inc for inc in ["internal", "openssl", "platform", ""]] env_lws.Prepend(CPPPATH=wrapper_includes) if env['builtin_mbedtls']: |