Fix yamonenv errors on accessing environment (#1542)
[openwrt.git] / package / d80211 / Makefile
index 2bc9d41..1d8af48 100644 (file)
@@ -4,15 +4,13 @@
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
 #
-# $Id:$
+# $Id$
 
 include $(TOPDIR)/rules.mk
 include $(INCLUDE_DIR)/kernel.mk
 
 PKG_NAME:=kmod-d80211
 
 include $(TOPDIR)/rules.mk
 include $(INCLUDE_DIR)/kernel.mk
 
 PKG_NAME:=kmod-d80211
-PKG_VERSION:=20061230
-
-PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
+PKG_VERSION:=20070201
 
 include $(INCLUDE_DIR)/package.mk
 
 
 include $(INCLUDE_DIR)/package.mk
 
@@ -29,6 +27,7 @@ endef
 define Build/Prepare
        mkdir -p $(PKG_BUILD_DIR)
        $(CP) ./src/* $(PKG_BUILD_DIR)/
 define Build/Prepare
        mkdir -p $(PKG_BUILD_DIR)
        $(CP) ./src/* $(PKG_BUILD_DIR)/
+       $(SED) 's,INIT_WORK(,INIT_WORK_NEW(,g' $(PKG_BUILD_DIR)/*.[ch]
 endef
 
 define Build/Compile
 endef
 
 define Build/Compile
@@ -36,17 +35,19 @@ define Build/Compile
                CROSS_COMPILE="$(TARGET_CROSS)" \
                ARCH="$(LINUX_KARCH)" \
                SUBDIRS="$(PKG_BUILD_DIR)" \
                CROSS_COMPILE="$(TARGET_CROSS)" \
                ARCH="$(LINUX_KARCH)" \
                SUBDIRS="$(PKG_BUILD_DIR)" \
-               EXTRA_CFLAGS="-I$(PKG_BUILD_DIR)/include" \
+               EXTRA_CFLAGS="-I$(PKG_BUILD_DIR)/include -include compat_hacks.h" \
                modules
 endef
 
 define Build/InstallDev
                modules
 endef
 
 define Build/InstallDev
-       mkdir -p $(STAGING_DIR)/usr/include/net
-       $(CP) ./src/include/net/* $(STAGING_DIR)/usr/include/net/
+       mkdir -p $(STAGING_DIR)/usr/include
+       $(CP) ./src/include/* $(STAGING_DIR)/usr/include/
 endef
 
 define Build/UninstallDev
        rm -f $(STAGING_DIR)/usr/include/net/d80211*
 endef
 
 define Build/UninstallDev
        rm -f $(STAGING_DIR)/usr/include/net/d80211*
+       rm -f $(STAGING_DIR)/usr/include/compat_hacks.h
+       rm -f $(STAGING_DIR)/usr/include/linux/ieee80211*
 endef
 
 $(eval $(call KernelPackage,d80211))
 endef
 
 $(eval $(call KernelPackage,d80211))
This page took 0.024037 seconds and 4 git commands to generate.