diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-14 07:01:13 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-14 07:01:13 +0000 |
commit | f2b45182ed6af27b97237b8426716993799ebcb7 (patch) | |
tree | 52a3dc65f777dd81871675ba7dbf85c13ebe179f /package/hostapd/patches | |
parent | 13e370c2f1885801c0b5f7e1280b3858b43b817b (diff) | |
download | master-187ad058-f2b45182ed6af27b97237b8426716993799ebcb7.tar.gz master-187ad058-f2b45182ed6af27b97237b8426716993799ebcb7.tar.bz2 master-187ad058-f2b45182ed6af27b97237b8426716993799ebcb7.zip |
add hostapd package with initial support for madwifi
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1659 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/patches')
-rw-r--r-- | package/hostapd/patches/001-cross_compile_fix.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/hostapd/patches/001-cross_compile_fix.patch b/package/hostapd/patches/001-cross_compile_fix.patch new file mode 100644 index 0000000000..d4323a7d96 --- /dev/null +++ b/package/hostapd/patches/001-cross_compile_fix.patch @@ -0,0 +1,32 @@ +diff -ruN hostapd-0.3.9-old/Makefile hostapd-0.3.9-new/Makefile +--- hostapd-0.3.9-old/Makefile 2005-06-11 05:03:36.000000000 +0200 ++++ hostapd-0.3.9-new/Makefile 2005-08-14 08:09:52.000000000 +0200 +@@ -3,7 +3,7 @@ + DIR_HOSTAP=. + + ifndef CFLAGS +-CFLAGS = -MMD -O2 -Wall -g ++CFLAGS = -MMD $(OPTFLAGS) $(CPPFLAGS) + endif + + # define HOSTAPD_DUMP_STATE to include SIGUSR1 handler for dumping state to +@@ -173,7 +173,7 @@ + for i in $(ALL); do cp $$i /usr/local/bin/$$i; done + + hostapd: $(OBJS) +- $(CC) -o hostapd $(OBJS) $(LIBS) ++ $(CC) -o hostapd $(OBJS) $(LDFLAGS) $(LIBS) + + driver_conf.c: Makefile .config + rm -f driver_conf.c +diff -ruN hostapd-0.3.9-old/driver_madwifi.c hostapd-0.3.9-new/driver_madwifi.c +--- hostapd-0.3.9-old/driver_madwifi.c 2005-05-18 05:38:57.000000000 +0200 ++++ hostapd-0.3.9-new/driver_madwifi.c 2005-08-14 08:23:21.000000000 +0200 +@@ -24,6 +24,7 @@ + #include <include/compat.h> + #include <net80211/ieee80211.h> + #include <net80211/ieee80211_crypto.h> ++#include <net80211/_ieee80211.h> + #include <net80211/ieee80211_ioctl.h> + + #include <net/if_arp.h> |