diff options
author | orbea <orbea@riseup.net> | 2024-11-12 10:15:17 -0800 |
---|---|---|
committer | orbea <orbea@riseup.net> | 2024-11-12 10:15:17 -0800 |
commit | 8adf7954f464a8b3ee7cae93b6e467cc1c376b9f (patch) | |
tree | 5febc3b8335db9cbd1a6088ec864db74934c8f7a /net-analyzer/nmap/files | |
parent | net-analyzer/nmap: enable py3.13 (diff) | |
download | libressl-8adf7954f464a8b3ee7cae93b6e467cc1c376b9f.tar.gz libressl-8adf7954f464a8b3ee7cae93b6e467cc1c376b9f.tar.bz2 libressl-8adf7954f464a8b3ee7cae93b6e467cc1c376b9f.zip |
net-analyzer/nmap: drop 7.94, 7.94-r1
Signed-off-by: orbea <orbea@riseup.net>
Diffstat (limited to 'net-analyzer/nmap/files')
-rw-r--r-- | net-analyzer/nmap/files/nmap-7.94-autoconf-2.72.patch | 33 | ||||
-rw-r--r-- | net-analyzer/nmap/files/nmap-7.94-topport.patch | 31 |
2 files changed, 0 insertions, 64 deletions
diff --git a/net-analyzer/nmap/files/nmap-7.94-autoconf-2.72.patch b/net-analyzer/nmap/files/nmap-7.94-autoconf-2.72.patch deleted file mode 100644 index bf6affb..0000000 --- a/net-analyzer/nmap/files/nmap-7.94-autoconf-2.72.patch +++ /dev/null @@ -1,33 +0,0 @@ -https://github.com/nmap/nmap/pull/2763 -https://bugs.gentoo.org/920712 ---- a/libdnet-stripped/config/acinclude.m4 -+++ b/libdnet-stripped/config/acinclude.m4 -@@ -201,6 +201,8 @@ - dnl - AC_DEFUN(AC_DNET_IOCTL_ARP, - [AC_MSG_CHECKING(for arp(7) ioctls) -+ AC_PROG_EGREP -+ AC_PROG_CPP - AC_CACHE_VAL(ac_cv_dnet_ioctl_arp, - AC_EGREP_CPP(werd, [ - # include <sys/types.h> ---- a/libdnet-stripped/configure.in -+++ b/libdnet-stripped/configure.in -@@ -211,7 +211,7 @@ - AC_REPLACE_FUNCS(err strlcpy strsep) - - dnl Checks for other system-specific jonks. --if test "$CYGWIN" != yes ; then -+AS_IF([test "$CYGWIN" != yes], [ - AC_DNET_BSD_BPF - AC_DNET_LINUX_PROCFS - AC_DNET_LINUX_PF_PACKET -@@ -221,7 +221,7 @@ - AC_DNET_RAWIP_HOST_OFFLEN - AC_DNET_RAWIP_COOKED - AC_DNET_GETKERNINFO --fi -+]) - - dnl Check for arp interface. - if test "$ac_cv_header_Iphlpapi_h" = yes ; then diff --git a/net-analyzer/nmap/files/nmap-7.94-topport.patch b/net-analyzer/nmap/files/nmap-7.94-topport.patch deleted file mode 100644 index 0ba568d..0000000 --- a/net-analyzer/nmap/files/nmap-7.94-topport.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://bugs.gentoo.org/918874 -https://github.com/nmap/nmap/issues/2655 -https://github.com/nmap/nmap/issues/2679 -https://github.com/nmap/nmap/commit/edad9c059ca45bccab8c0f41fe6fc6546c60153a - -From edad9c059ca45bccab8c0f41fe6fc6546c60153a Mon Sep 17 00:00:00 2001 -From: dmiller <dmiller@e0a8ed71-7df4-0310-8962-fdc924857419> -Date: Thu, 20 Jul 2023 16:21:23 +0000 -Subject: [PATCH] Add missing braces. Fixes #2679 - ---- - services.cc | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -diff --git a/services.cc b/services.cc -index a0899c7509..2a709dca97 100644 ---- a/services.cc -+++ b/services.cc -@@ -496,9 +496,10 @@ void gettoppts(double level, const char *portlist, struct scan_lists * ports, co - if (sctpmax && strcmp(current->s_proto, "sctp") == 0 - && (!ptsdata_initialized || - is_port_member(ptsdata.sctp_ports, ptsdata.sctp_count, current)) -- ) -+ ) { - ports->sctp_ports[ports->sctp_count++] = current->s_port; -- sctpmax--; -+ sctpmax--; -+ } - break; - default: - break; |