diff options
author | Tim Yardley <lst@openwrt.org> | 2007-03-05 01:38:44 +0000 |
---|---|---|
committer | Tim Yardley <lst@openwrt.org> | 2007-03-05 01:38:44 +0000 |
commit | ccfa4a7af6c49dd72a541f25568e1ab561002aa7 (patch) | |
tree | 2c8745bf81de6241ca198fe4883e26cffde146ba /package/wireless-tools/patches/001-debian.patch | |
parent | 44a2fd050c2c95f342ccca8bcdcb3d05f4ac1042 (diff) | |
download | upstream-ccfa4a7af6c49dd72a541f25568e1ab561002aa7.tar.gz upstream-ccfa4a7af6c49dd72a541f25568e1ab561002aa7.tar.bz2 upstream-ccfa4a7af6c49dd72a541f25568e1ab561002aa7.zip |
trunk.. same deal as changeset:6526
SVN-Revision: 6527
Diffstat (limited to 'package/wireless-tools/patches/001-debian.patch')
-rw-r--r-- | package/wireless-tools/patches/001-debian.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/package/wireless-tools/patches/001-debian.patch b/package/wireless-tools/patches/001-debian.patch new file mode 100644 index 0000000000..ba8755b705 --- /dev/null +++ b/package/wireless-tools/patches/001-debian.patch @@ -0,0 +1,35 @@ +--- wireless-tools-27.orig/iwlib.c ++++ wireless-tools-27/iwlib.c +@@ -622,6 +622,7 @@ + { + struct iwreq wrq; + ++ memset((char *) &wrq, 0, sizeof(struct iwreq)); + memset((char *) info, 0, sizeof(struct wireless_config)); + + /* Get wireless name */ +--- wireless-tools-27.orig/Makefile ++++ wireless-tools-27/Makefile +@@ -64,8 +64,8 @@ + # Install directories + INSTALL_DIR= $(PREFIX)/sbin/ + INSTALL_LIB= $(PREFIX)/lib/ +-INSTALL_INC= $(PREFIX)/include/ +-INSTALL_MAN= $(PREFIX)/man/ ++INSTALL_INC= $(PREFIX)/usr/include/ ++INSTALL_MAN= $(PREFIX)/usr/share/man/ + + # Various commands + RM = rm -f +@@ -81,9 +81,9 @@ + endif + + # Other flags +-CFLAGS=-Os -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow \ ++#CFLAGS=-Os -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow \ + -Wpointer-arith -Wcast-qual -Winline -I. +-#CFLAGS=-O2 -W -Wall -Wstrict-prototypes -I. ++CFLAGS=-O2 -W -Wall -Wstrict-prototypes -I. + DEPFLAGS=-MMD + XCFLAGS=$(CFLAGS) $(DEPFLAGS) $(WARN) $(HEADERS) $(WELIB_FLAG) + PICFLAG=-fPIC |