diff options
| author | Nick Hainke | 2025-05-04 20:38:10 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-05-30 15:10:10 +0000 |
| commit | 3b2051ce44517cc7f37ffe6306f6025a77a01ed2 (patch) | |
| tree | 95482e8af2c0d0e95be0de8a4aa1b10516a918f0 | |
| parent | 2f289e3b7452ac877632d9f3b2237f8276076a79 (diff) | |
| download | openwrt-3b2051ce44517cc7f37ffe6306f6025a77a01ed2.tar.gz | |
tools/b43-tools: update to latest version, fix C23 build
Update b43-tools to the latest upstream version to fix a
compilation error with C23:
util.h:25:15: error: 'bool' cannot be defined via 'typedef'
25 | typedef _Bool bool;
| ^~~~
Changelog:
c6fc53f replace custom bool typedef with <stdbool.h>
dadf30c fix format warning in compilation
2fe10ea b43-fwdump: Fix forwarding of arguments to disassembler
Link: https://github.com/openwrt/openwrt/pull/18708
Signed-off-by: Nick Hainke <vincent@systemli.org>
(cherry picked from commit f8da45e25d9efcabbad65f1300de1bca7718b134)
| -rw-r--r-- | tools/b43-tools/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/b43-tools/Makefile b/tools/b43-tools/Makefile index 8ec13309be..eb2fb284a8 100644 --- a/tools/b43-tools/Makefile +++ b/tools/b43-tools/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=b43-tools -PKG_DATE:=2022-07-05 +PKG_DATE:=2025-05-04 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/mbuesch/b43-tools.git -PKG_SOURCE_VERSION:=2fe10ea6690df9a068cb21cde537236bae784a14 -PKG_MIRROR_HASH:=4009d6c1f9ede43102897d6ebf4bd954331f3c4e2a94d4e61c0e5f303f929914 +PKG_SOURCE_VERSION:=cc352349153eeda9c164ecd0d06c161a59ec8753 +PKG_MIRROR_HASH:=c1feba649c2cf3e984a2b897b4a6938252515c0833358d51bd15e049b6b2fb65 include $(INCLUDE_DIR)/host-build.mk |