Date: Fri, 19 May 2017 09:46:16 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441214 - in head/security/nmap: . files Message-ID: <201705190946.v4J9kGD1039770@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eugen Date: Fri May 19 09:46:16 2017 New Revision: 441214 URL: https://svnweb.freebsd.org/changeset/ports/441214 Log: Make nmap work with INET4-only kernels: - add new FreeBSD-specific patch; - remove invalid comment from Makefile (it did build but produced run-time error); - bump PORTREVISION. PR: 217558 Approved by: ohauer (maintainer timeout, 10 weeks), vsevolod (mentor) Added: head/security/nmap/files/patch-intf.c (contents, props changed) Modified: head/security/nmap/Makefile Modified: head/security/nmap/Makefile ============================================================================== --- head/security/nmap/Makefile Fri May 19 09:25:13 2017 (r441213) +++ head/security/nmap/Makefile Fri May 19 09:46:16 2017 (r441214) @@ -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 Added: head/security/nmap/files/patch-intf.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/nmap/files/patch-intf.c Fri May 19 09:46:16 2017 (r441214) @@ -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)); + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705190946.v4J9kGD1039770>