mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
libwebsockets: fix uloop support
The commit adding uloop support failed to actually install the .so and
add the correct dependencies.
[2022/12/26 18:19:38:1835] E: lws_create_context: failed to load evlib_uloop
Fixes: 1557ac367a ("libwebsockets: enable built in uloop support")
Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
@@ -45,7 +45,7 @@ define Package/libwebsockets/Default
|
|||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE:=libwebsockets
|
TITLE:=libwebsockets
|
||||||
DEPENDS:=+zlib +libcap
|
DEPENDS:=+zlib +libcap +libubox
|
||||||
URL:=https://libwebsockets.org
|
URL:=https://libwebsockets.org
|
||||||
MAINTAINER:=Karl Palsson <karlp@etactica.com>
|
MAINTAINER:=Karl Palsson <karlp@etactica.com>
|
||||||
endef
|
endef
|
||||||
@@ -97,7 +97,7 @@ endif
|
|||||||
|
|
||||||
define Package/libwebsockets/install
|
define Package/libwebsockets/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libwebsockets.so* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libwebsockets*.so* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
Package/libwebsockets-mbedtls/install = $(Package/libwebsockets/install)
|
Package/libwebsockets-mbedtls/install = $(Package/libwebsockets/install)
|
||||||
|
|||||||
Reference in New Issue
Block a user