diff options
author | Peter Volkov <pva@gentoo.org> | 2006-11-06 07:12:52 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2006-11-06 07:12:52 +0000 |
commit | 37a25e0c67f354d1b7145e1d7f3f6be6e1f9560b (patch) | |
tree | 6f9b5c83393ba91cfbf1006e9aac2088154f5e3b /net-wireless/wepattack/files | |
parent | New ebuild. See Bug #152283 (diff) | |
download | historical-37a25e0c67f354d1b7145e1d7f3f6be6e1f9560b.tar.gz historical-37a25e0c67f354d1b7145e1d7f3f6be6e1f9560b.tar.bz2 historical-37a25e0c67f354d1b7145e1d7f3f6be6e1f9560b.zip |
Use gcc instead of ld for linking and this fixes issue reported by Markus Meier, Michael Weyershäuser and Dustin J. Mitchell in bug #151363. Thank you! Removed broken version. Removed ~amd64 from 0.1.3-r1. Added longdescription in metadata.xml.
Package-Manager: portage-2.1.1
Diffstat (limited to 'net-wireless/wepattack/files')
-rw-r--r-- | net-wireless/wepattack/files/digest-wepattack-0.1.3-r3 | 3 | ||||
-rw-r--r-- | net-wireless/wepattack/files/wepattack-0.1.3-missed-string.h-warnings-fix.diff | 22 |
2 files changed, 25 insertions, 0 deletions
diff --git a/net-wireless/wepattack/files/digest-wepattack-0.1.3-r3 b/net-wireless/wepattack/files/digest-wepattack-0.1.3-r3 new file mode 100644 index 000000000000..063ad0df2927 --- /dev/null +++ b/net-wireless/wepattack/files/digest-wepattack-0.1.3-r3 @@ -0,0 +1,3 @@ +MD5 be5a77902c992096dd95069bdade343b WepAttack-0.1.3.tar.gz 25063 +RMD160 a9d2f7ad1df9b0c708a5551bf064e17e8bbd1b15 WepAttack-0.1.3.tar.gz 25063 +SHA256 4a251df5b68eb2724491470cddda699e8fabdfce3c4778a722fb9299e4dc21a2 WepAttack-0.1.3.tar.gz 25063 diff --git a/net-wireless/wepattack/files/wepattack-0.1.3-missed-string.h-warnings-fix.diff b/net-wireless/wepattack/files/wepattack-0.1.3-missed-string.h-warnings-fix.diff new file mode 100644 index 000000000000..a5e1cf754151 --- /dev/null +++ b/net-wireless/wepattack/files/wepattack-0.1.3-missed-string.h-warnings-fix.diff @@ -0,0 +1,22 @@ +diff -Naur WepAttack-0.1.3.orig/src/modes.c WepAttack-0.1.3/src/modes.c +--- WepAttack-0.1.3.orig/src/modes.c 2002-10-24 17:15:19.000000000 +0400 ++++ WepAttack-0.1.3/src/modes.c 2006-11-06 09:59:46.000000000 +0300 +@@ -20,6 +20,7 @@ + + #include <sys/types.h> + #include <stdio.h> ++#include <string.h> + #include "modes.h" + #include "rc4.h" + #include "wlan/wlan_compat.h" +diff -Naur WepAttack-0.1.3.orig/src/wepattack.c WepAttack-0.1.3/src/wepattack.c +--- WepAttack-0.1.3.orig/src/wepattack.c 2006-11-06 09:58:33.000000000 +0300 ++++ WepAttack-0.1.3/src/wepattack.c 2006-11-06 09:59:36.000000000 +0300 +@@ -32,6 +32,7 @@ + #include <zlib.h> + #include <math.h> + #include <signal.h> ++#include <string.h> + #include "wepattack.h" + #include "wepfilter.h" + #include "log.h" |