diff options
author | Eugene Grosbein <eugen@FreeBSD.org> | 2017-05-19 09:46:16 +0000 |
---|---|---|
committer | Eugene Grosbein <eugen@FreeBSD.org> | 2017-05-19 09:46:16 +0000 |
commit | bd4ff803377bc61dd2c911bb98962c1cbd4a0f1c (patch) | |
tree | 997b83045f6fbe6c62b98ec8d6c08c706ec92753 /security/nmap | |
parent | 9db72d2b3c751e9cc90a91acd2cb3da0fe87d2f4 (diff) | |
download | ports-bd4ff803377bc61dd2c911bb98962c1cbd4a0f1c.tar.gz ports-bd4ff803377bc61dd2c911bb98962c1cbd4a0f1c.zip |
Notes
Diffstat (limited to 'security/nmap')
-rw-r--r-- | security/nmap/Makefile | 2 | ||||
-rw-r--r-- | security/nmap/files/patch-intf.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/security/nmap/Makefile b/security/nmap/Makefile index 374c9bd8d503..17d813f284e4 100644 --- a/security/nmap/Makefile +++ b/security/nmap/Makefile @@ -3,6 +3,7 @@ PORTNAME= nmap DISTVERSION= 7.40 +PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ LOCAL/ohauer @@ -24,7 +25,6 @@ LIB_DEPENDS= libpcre.so:devel/pcre USES= tar:bzip2 gmake cpe GNU_CONFIGURE= yes -# Note: nmap does no longer build agains custom kernel without IPv6! OPTIONS_SUB= yes OPTIONS_DEFINE= DOCS SSL OPTIONS_DEFAULT=SSL diff --git a/security/nmap/files/patch-intf.c b/security/nmap/files/patch-intf.c new file mode 100644 index 000000000000..b00c4a17e91e --- /dev/null +++ b/security/nmap/files/patch-intf.c @@ -0,0 +1,11 @@ +--- libdnet-stripped/src/intf.c.orig 2017-03-05 16:19:13.768984000 +0700 ++++ libdnet-stripped/src/intf.c 2017-03-05 16:16:48.337379000 +0700 +@@ -163,7 +163,7 @@ intf_open(void) + #if defined(SIOCGLIFCONF) || defined(SIOCGIFNETMASK_IN6) || defined(SIOCGIFNETMASK6) + if ((intf->fd6 = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) { + # ifdef EPROTONOSUPPORT +- if (errno != EPROTONOSUPPORT) ++ if (errno != EPROTONOSUPPORT && errno != EAFNOSUPPORT) + # endif + return (intf_close(intf)); + } |