package/libwebsockets: add support for extensions
authorAdam Duskett <Aduskett@gmail.com>
Sun, 26 Jul 2020 02:28:58 +0000 (19:28 -0700)
committerYann E. MORIN <yann.morin.1998@free.fr>
Mon, 27 Jul 2020 06:54:26 +0000 (08:54 +0200)
commit9b0d79ea5e10f485fcd38c4224257ccda3907806
treede90037d9c04b16fa6d9f85a56e23ceba42ae1e1
parente825ad6f928ba70185d5cf8c3ab35852684a5a01
package/libwebsockets: add support for extensions

libwebsockets currently depends on zlib, however, as of commit
13ba5bbc633ea962d46d9f2bfb2e87c9f7e83b62 (from 2013!) zlib is not actually a
requirement if extensions are not enabled.

By default, libwebsockets sets the "LWS_WITHOUT_EXTENSIONS" option to "ON,"
which removes the need for zlib as a dependency. Because of this default
setting, there are two options:

1) Remove the dependency on zlib, create a new option under Config.in to allow
a user to enable extensions, add zlib as a dependency, and set
LWS_WITHOUT_EXTENSIONS to "OFF" if that option is selected.

2) Keep the dependency and explicitly set LWS_WITHOUT_EXTENSIONS to "OFF."

Below are the size differences in bytes:
  - Without zlib and extensions: 44636
  - With zlib and without extensions: 44720
  - With zlib and with extensions: 44732

Considering the size difference between all 3 is an incredible 96 bytes, and
the difference between what we have now, and enabling extensions is an
insurmountable 12 bytes, it is safe to keep the dependency on zlib and always
enable extensions.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
package/libwebsockets/libwebsockets.mk