From 1ffe4a97e188cf21fe157f5a7e7841f8a2421e75 Mon Sep 17 00:00:00 2001 From: Jeremy Laine Date: Thu, 22 Nov 2007 16:10:32 +0000 Subject: hostap-daemon_0.6.0.bb: package version 0.6.0 of hostap-daemon * update makefile-cross.diff patch * fix init script: pass -B to hostapd instead of passing -b to start-stop-daemon * instead of using per-machine enabling/disabling of madwifi support, use the 'pci' feature, like wpa-supplicant * build against madwifi-ng when madwifi support is enabled --- .../hostap/hostap-daemon-0.6.0/makefile-cross.diff | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 packages/hostap/hostap-daemon-0.6.0/makefile-cross.diff (limited to 'packages/hostap/hostap-daemon-0.6.0/makefile-cross.diff') diff --git a/packages/hostap/hostap-daemon-0.6.0/makefile-cross.diff b/packages/hostap/hostap-daemon-0.6.0/makefile-cross.diff new file mode 100644 index 0000000000..9534199e78 --- /dev/null +++ b/packages/hostap/hostap-daemon-0.6.0/makefile-cross.diff @@ -0,0 +1,25 @@ +diff -urN hostapd.orig/Makefile hostapd/Makefile +--- hostapd.orig/Makefile 2007-05-28 19:26:55.000000000 +0200 ++++ hostapd/Makefile 2007-11-22 16:28:44.000000000 +0100 +@@ -6,6 +6,8 @@ + CFLAGS = -MMD -O2 -Wall -g + endif + ++TARGET_PREFIX ?= /usr/local/bin/ ++ + # define HOSTAPD_DUMP_STATE to include SIGUSR1 handler for dumping state to + # a file (undefine it, if you want to save in binary size) + CFLAGS += -DHOSTAPD_DUMP_STATE +@@ -361,10 +363,10 @@ + fi + + install: all +- for i in $(ALL); do cp $$i /usr/local/bin/$$i; done ++ for i in $(ALL); do cp $$i $(TARGET_PREFIX)/$$i; done + + hostapd: $(OBJS) +- $(CC) -o hostapd $(OBJS) $(LIBS) ++ $(CC) $(LDFLAGS) -o hostapd $(OBJS) $(LIBS) + + OBJS_c = hostapd_cli.o ../src/common/wpa_ctrl.o ../src/utils/os_$(CONFIG_OS).o + hostapd_cli: $(OBJS_c) -- cgit v1.2.3