Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions libs/libwebsockets/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=libwebsockets
PKG_VERSION:=4.4.1
PKG_VERSION:=4.5.8
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_URL:=https://codeload.github.com/warmcat/libwebsockets/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=472e6cfa77b6f80ff2cc176bc59f6cb2856df7e30e8f31afcbd1fc94ffd2f828
PKG_HASH:=b6ade658f4af3a823d0dc806ae5ef0623f0f4f5e2aeb895a0f77c4783840c30e

PKG_SOURCE_VERSION:=v$(PKG_VERSION)

Expand All @@ -23,6 +23,9 @@ PKG_LICENSE_FILES:=LICENSE

PKG_BUILD_DEPENDS:=libubox

# GCC 15 workaround for discarded-qualifiers warning
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was it reported to upstream? In the past, I see that you reported some gcc15 issue in this issue: warmcat/libwebsockets#3415

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not yet. There are tons of discarded-qualifiers errors in packagaes and I am not sure if you could really expect that all packages compile without any warnings.

TARGET_CFLAGS += -Wno-error=discarded-qualifiers

CMAKE_INSTALL:=1

include $(INCLUDE_DIR)/package.mk
Expand Down
Loading