2006-06-11 00:41:16 +00:00
|
|
|
Common subdirectories: hostapd-0.5.2/logwatch and hostapd-0.5.2.new/logwatch
|
2007-06-04 11:25:53 +00:00
|
|
|
Index: hostapd-0.5.7/Makefile
|
|
|
|
===================================================================
|
|
|
|
--- hostapd-0.5.7.orig/Makefile 2007-06-04 13:22:31.790022464 +0200
|
|
|
|
+++ hostapd-0.5.7/Makefile 2007-06-04 13:22:31.856012432 +0200
|
|
|
|
@@ -2,7 +2,7 @@
|
|
|
|
DIR_WPA_SUPPLICANT=.
|
2006-06-11 00:41:16 +00:00
|
|
|
|
|
|
|
ifndef CFLAGS
|
|
|
|
-CFLAGS = -MMD -O2 -Wall -g
|
|
|
|
+CFLAGS = -MMD $(OPTFLAGS) $(CPPFLAGS)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# define HOSTAPD_DUMP_STATE to include SIGUSR1 handler for dumping state to
|
2007-06-04 11:25:53 +00:00
|
|
|
@@ -336,7 +336,7 @@
|
2006-06-11 00:41:16 +00:00
|
|
|
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
|
2007-06-04 11:25:53 +00:00
|
|
|
@@ -400,10 +400,10 @@
|
2006-06-11 00:41:16 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
nt_password_hash: $(NOBJS)
|
|
|
|
- $(CC) -o nt_password_hash $(NOBJS) $(LIBS_n)
|
|
|
|
+ $(CC) -o nt_password_hash $(NOBJS) $(LDFLAGS) $(LIBS_n)
|
|
|
|
|
|
|
|
hlr_auc_gw: $(HOBJS)
|
|
|
|
- $(CC) -o hlr_auc_gw $(HOBJS) $(LIBS_h)
|
|
|
|
+ $(CC) -o hlr_auc_gw $(HOBJS) $(LDFLAGS) $(LIBS_h)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f core *~ *.o hostapd hostapd_cli nt_password_hash hlr_auc_gw
|