]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
hostapd: fix compile error in basic variant
authorFelix Fietkau <nbd@nbd.name>
Wed, 28 Jan 2026 11:49:17 +0000 (11:49 +0000)
committerFelix Fietkau <nbd@nbd.name>
Wed, 28 Jan 2026 11:50:10 +0000 (11:50 +0000)
Adding base64 encoded beacon data needs the base64 functions to be available

Fixes: b44d4290fe83 ("hostapd: add raw beacon report data to ubus notification")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
package/network/services/hostapd/patches/601-ucode_support.patch
package/network/services/hostapd/patches/780-Implement-APuP-Access-Point-Micro-Peering.patch

index 835e856ff684ce5dcf90999c2071edfddb37a87f..74db671e4f4b80fced7158e457ef280e917487c7 100644 (file)
@@ -106,7 +106,7 @@ as adding/removing interfaces.
  
 --- a/hostapd/Makefile
 +++ b/hostapd/Makefile
-@@ -169,9 +169,21 @@ OBJS += ../src/eapol_auth/eapol_auth_sm.
+@@ -169,9 +169,22 @@ OBJS += ../src/eapol_auth/eapol_auth_sm.
  
  ifdef CONFIG_UBUS
  CFLAGS += -DUBUS_SUPPORT
@@ -115,6 +115,7 @@ as adding/removing interfaces.
 -LIBS += -lubox -lubus
 +LIBS += -lubus
 +NEED_ULOOP:=y
++NEED_BASE64=y
 +endif
 +
 +ifdef CONFIG_UCODE
index d0c2e67ccf84421962c30eceb204d2e29bfa450e..c1ac9449573e167b265c29be662c6179fc5d6ab8 100644 (file)
@@ -39,7 +39,7 @@ Hotfix-by: Sebastian Gottschall https://github.com/mirror/dd-wrt/commit/0c3001a6
 
 --- a/hostapd/Makefile
 +++ b/hostapd/Makefile
-@@ -1429,6 +1429,11 @@ ifdef CONFIG_NO_TKIP
+@@ -1430,6 +1430,11 @@ ifdef CONFIG_NO_TKIP
  CFLAGS += -DCONFIG_NO_TKIP
  endif