From: nbd Date: Mon, 18 Mar 2013 16:11:32 +0000 (+0000) Subject: hostapd: fix build errors on supplicant-only builds X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=9bb50b35bbe198a9d2c4c51a3108dc6f336e6337;hp=88fe32ebc86e3b87625c4ca326397cff0933b122;ds=sidebyside hostapd: fix build errors on supplicant-only builds git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36085 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 0c44a8b08d..7024844d10 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -225,7 +225,9 @@ TARGET_CPPFLAGS := \ TARGET_CFLAGS += -ffunction-sections -fdata-sections TARGET_LDFLAGS += -Wl,--gc-sections -TARGET_LDFLAGS += -lubox -lubus +ifeq ($(findstring supplicant,$(BUILD_VARIANT)),) + TARGET_LDFLAGS += -lubox -lubus +endif ifdef CONFIG_PACKAGE_kmod-mac80211 TARGET_LDFLAGS += -lm -lnl-tiny diff --git a/package/network/services/hostapd/patches/700-ubus_support.patch b/package/network/services/hostapd/patches/700-ubus_support.patch index 92ca7b21ca..ad1a45bf38 100644 --- a/package/network/services/hostapd/patches/700-ubus_support.patch +++ b/package/network/services/hostapd/patches/700-ubus_support.patch @@ -422,14 +422,14 @@ + const u8 *addr; +}; + ++struct hostapd_iface; ++struct hostapd_data; ++ +#ifdef UBUS_SUPPORT + +#include +#include + -+struct hostapd_iface; -+struct hostapd_data; -+ +struct hostapd_ubus_iface { + struct ubus_object obj; +};