diff options
author | Jeremy Laine <jeremy.laine@m4x.org> | 2008-04-28 15:39:55 +0000 |
---|---|---|
committer | Jeremy Laine <jeremy.laine@m4x.org> | 2008-04-28 15:39:55 +0000 |
commit | 50cfa4afecc878d1ddde60e4254c801e4b4ba6e0 (patch) | |
tree | 49a5a18fc3c5ead016d6ac65ced9c5b602e5dd64 /packages/hostap/hostap-daemon-0.5.10 | |
parent | 7be7517af3948a6a78b76805ff54958da3b92ac2 (diff) |
hostap-daemon: use version 0.5.10 by default
Diffstat (limited to 'packages/hostap/hostap-daemon-0.5.10')
-rw-r--r-- | packages/hostap/hostap-daemon-0.5.10/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/hostap/hostap-daemon-0.5.10/makefile-cross.diff | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/packages/hostap/hostap-daemon-0.5.10/.mtn2git_empty b/packages/hostap/hostap-daemon-0.5.10/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/hostap/hostap-daemon-0.5.10/.mtn2git_empty diff --git a/packages/hostap/hostap-daemon-0.5.10/makefile-cross.diff b/packages/hostap/hostap-daemon-0.5.10/makefile-cross.diff new file mode 100644 index 0000000000..43b275c67b --- /dev/null +++ b/packages/hostap/hostap-daemon-0.5.10/makefile-cross.diff @@ -0,0 +1,31 @@ +diff -urN hostapd-0.5.10.orig/Makefile hostapd-0.5.10/Makefile +--- hostapd-0.5.10.orig/Makefile 2008-02-20 01:08:54.000000000 +0100 ++++ hostapd-0.5.10/Makefile 2008-04-28 17:01:36.000000000 +0200 +@@ -1,10 +1,14 @@ ++ifndef CC + CC=gcc ++endif + DIR_WPA_SUPPLICANT=. + + ifndef CFLAGS + 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 +@@ -333,10 +337,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) + + driver_conf.c: Makefile .config + rm -f driver_conf.c |