diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-20 16:07:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-20 16:07:02 +0000 |
commit | 5460d7854e804a2d692fa1d3fa57a1e21ccc99a1 (patch) | |
tree | dcb9e447746d1be15c44eff98e543d9ba378f30b /package/hostapd | |
parent | 99aed4448780adc3aba3d281f6329730555c3773 (diff) | |
download | upstream-5460d7854e804a2d692fa1d3fa57a1e21ccc99a1.tar.gz upstream-5460d7854e804a2d692fa1d3fa57a1e21ccc99a1.tar.bz2 upstream-5460d7854e804a2d692fa1d3fa57a1e21ccc99a1.zip |
disable driver_devicescape in hostapd will be enabled again when the mac80211 guys have sorted out the api ;)
SVN-Revision: 9369
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index addba5e219..85f42dc6a1 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -16,7 +16,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ PKG_MD5SUM:=40416b48cae9c78e5a2452caf214aff3 -PKG_BUILD_DEPENDS:= mac80211 madwifi +PKG_BUILD_DEPENDS:=madwifi include $(INCLUDE_DIR)/package.mk @@ -74,16 +74,13 @@ define Build/ConfigureTarget ifneq ($(CONFIG_PACKAGE_kmod-madwifi),) echo "CONFIG_DRIVER_MADWIFI=y" >> $(PKG_BUILD_DIR)_$(1)/.config endif -ifneq ($(CONFIG_PACKAGE_kmod-mac80211),) - echo "CONFIG_DRIVER_DEVICESCAPE=y" >> $(PKG_BUILD_DIR)_$(1)/.config -endif endef define Build/CompileTarget $(MAKE) -C $(PKG_BUILD_DIR)_$(1) \ $(TARGET_CONFIGURE_OPTS) \ OPTFLAGS="$(TARGET_CFLAGS)" \ - CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/madwifi -I$(STAGING_DIR)/usr/include/mac80211" \ + CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/madwifi" \ LDFLAGS="$(TARGET_LDFLAGS)" \ hostapd hostapd_cli $(CP) $(PKG_BUILD_DIR)_$(1)/hostapd_cli $(PKG_BUILD_DIR)/ |