iw: use libnl-tiny, forcibly disable git version check
SVN-Revision: 15514
This commit is contained in:
parent
b736ff1fdf
commit
3750e2788d
1 changed files with 17 additions and 4 deletions
|
@ -14,7 +14,7 @@ PKG_RELEASE:=1
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_SOURCE_URL:=http://wireless.kernel.org/download/iw/
|
PKG_SOURCE_URL:=http://wireless.kernel.org/download/iw/
|
||||||
PKG_MD5SUM:=cf9121abb4ffe6dce1691e2ec97d5b2b
|
PKG_MD5SUM:=cf9121abb4ffe6dce1691e2ec97d5b2b
|
||||||
PKG_BUILD_DEPENDS:=mac80211 libnl
|
PKG_BUILD_DEPENDS:=mac80211
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -23,16 +23,29 @@ define Package/iw
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
TITLE:=cfg80211 interface configuration utility
|
TITLE:=cfg80211 interface configuration utility
|
||||||
URL:=http://wireless.kernel.org/en/users/Documentation/iw
|
URL:=http://wireless.kernel.org/en/users/Documentation/iw
|
||||||
DEPENDS:=@!TARGET_avr32 @!TARGET_etrax +libnl
|
DEPENDS:=@!TARGET_avr32 @!TARGET_etrax +libnl-tiny
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
echo "const char iw_version[] = \"$(PKG_VERSION)\";" > $(PKG_BUILD_DIR)/version.c
|
echo "const char iw_version[] = \"$(PKG_VERSION)\";" > $(PKG_BUILD_DIR)/version.c
|
||||||
|
rm -f $(PKG_BUILD_DIR)/version.sh
|
||||||
|
touch $(PKG_BUILD_DIR)/version.sh
|
||||||
|
chmod +x $(PKG_BUILD_DIR)/version.sh
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
TARGET_CPPFLAGS:= \
|
||||||
|
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
||||||
|
-I$(STAGING_DIR)/usr/include/mac80211 \
|
||||||
|
$(TARGET_CPPFLAGS) \
|
||||||
|
-DCONFIG_LIBNL20
|
||||||
|
|
||||||
MAKE_FLAGS += \
|
MAKE_FLAGS += \
|
||||||
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/mac80211 -I$(STAGING_DIR)/usr/include/libnl $(TARGET_CPPFLAGS)" \
|
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
|
||||||
LDFLAGS="$(TARGET_LDFLAGS) -lnl"
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
||||||
|
NL1FOUND="" NL2FOUND=Y \
|
||||||
|
NLLIBNAME="libnl-tiny" \
|
||||||
|
LIBS="-lm -lnl-tiny" \
|
||||||
|
V=1
|
||||||
|
|
||||||
ifneq ($(CONFIG_LINUX_2_6),)
|
ifneq ($(CONFIG_LINUX_2_6),)
|
||||||
define Package/iw/install
|
define Package/iw/install
|
||||||
|
|
Loading…
Reference in a new issue