Browse Source

update to latest stable upstream

Waldemar Brodkorb 11 years ago
parent
commit
9fb672a199

+ 3 - 3
package/nmap/Makefile

@@ -4,9 +4,9 @@
 include ${TOPDIR}/rules.mk
 
 PKG_NAME:=		nmap
-PKG_VERSION:=		6.40
-PKG_RELEASE:=		2
-PKG_MD5SUM:=		c0e2f3370e1fb97fb53185b15aa22aff
+PKG_VERSION:=		6.46
+PKG_RELEASE:=		1
+PKG_MD5SUM:=		5a36ad3a63d5b7ea5514f745a397436a
 PKG_DESCR:=		utility for network exploration or security auditing
 PKG_SECTION:=		net
 PKG_DEPENDS:=		libdnet libpcap libpcre libstdcxx

+ 0 - 12
package/nmap/patches/patch-ncat_ncat_posix_c

@@ -1,12 +0,0 @@
---- nmap-6.40.orig/ncat/ncat_posix.c	2013-07-29 02:03:01.000000000 +0200
-+++ nmap-6.40/ncat/ncat_posix.c	2013-10-05 11:01:16.000000000 +0200
-@@ -122,7 +122,9 @@
- /* $Id$ */
- 
- #include "ncat.h"
-+#ifdef HAVE_LUA
- #include "ncat_lua.h"
-+#endif
- 
- char **cmdline_split(const char *cmdexec);
- 

+ 0 - 11
package/nmap/patches/patch-service_scan_cc

@@ -1,11 +0,0 @@
---- nmap-6.40.orig/service_scan.cc	2013-07-29 00:08:48.000000000 +0200
-+++ nmap-6.40/service_scan.cc	2013-10-05 11:24:37.000000000 +0200
-@@ -1202,7 +1202,7 @@ bool ServiceProbe::portIsProbable(enum s
- 
-   portv = (tunnel == SERVICE_TUNNEL_SSL)? &probablesslports : &probableports;
-   
--  if (find(portv->begin(), portv->end(), portno) == portv->end())
-+  if (std::find(portv->begin(), portv->end(), portno) == portv->end())
-     return false;
-   return true;
- }