diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-04 16:13:46 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-04 16:13:46 +0000 |
commit | 26da93c73c9e7b2d57144f3acdd4036a12e1174d (patch) | |
tree | 32e3e862b9eea5494cddce6a00806eebd6f6c103 /package | |
parent | ec1f198488ac782ef6224a19be830d5f3619746f (diff) |
fix more issues with libnl-tiny and eglibc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15592 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/crda/Makefile | 1 | ||||
-rw-r--r-- | package/hostapd/Makefile | 3 | ||||
-rw-r--r-- | package/iw/Makefile | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/package/crda/Makefile b/package/crda/Makefile index 658511705..e53db3dfd 100644 --- a/package/crda/Makefile +++ b/package/crda/Makefile @@ -51,6 +51,7 @@ endef TARGET_CPPFLAGS := \ -I$(STAGING_DIR)/usr/include/libnl-tiny \ + -D_GNU_SOURCE \ $(TARGET_CPPFLAGS) MAKE_FLAGS += \ diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile index bd873b9b2..6d0b18bcd 100644 --- a/package/hostapd/Makefile +++ b/package/hostapd/Makefile @@ -98,7 +98,8 @@ TARGET_CPPFLAGS := \ $(TARGET_CPPFLAGS) \ -I$(STAGING_DIR)/usr/include/madwifi \ -I$(STAGING_DIR)/usr/include/mac80211 \ - -DCONFIG_LIBNL20 + -DCONFIG_LIBNL20 \ + -D_GNU_SOURCE define Build/CompileTarget CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \ diff --git a/package/iw/Makefile b/package/iw/Makefile index 9187b55c8..fb10f10f2 100644 --- a/package/iw/Makefile +++ b/package/iw/Makefile @@ -37,7 +37,8 @@ TARGET_CPPFLAGS:= \ -I$(STAGING_DIR)/usr/include/libnl-tiny \ -I$(STAGING_DIR)/usr/include/mac80211 \ $(TARGET_CPPFLAGS) \ - -DCONFIG_LIBNL20 + -DCONFIG_LIBNL20 \ + -D_GNU_SOURCE MAKE_FLAGS += \ CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \ |