From owner-svn-ports-head@freebsd.org Wed Apr 18 10:52:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D222FA7CEC; Wed, 18 Apr 2018 10:52:19 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F419F6CDD3; Wed, 18 Apr 2018 10:52:18 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EF1E91A09B; Wed, 18 Apr 2018 10:52:18 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3IAqIt6089537; Wed, 18 Apr 2018 10:52:18 GMT (envelope-from eugen@FreeBSD.org) Received: (from eugen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3IAqI3C089536; Wed, 18 Apr 2018 10:52:18 GMT (envelope-from eugen@FreeBSD.org) Message-Id: <201804181052.w3IAqI3C089536@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eugen set sender to eugen@FreeBSD.org using -f From: Eugene Grosbein Date: Wed, 18 Apr 2018 10:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467703 - head/net/libdnet/files X-SVN-Group: ports-head X-SVN-Commit-Author: eugen X-SVN-Commit-Paths: head/net/libdnet/files X-SVN-Commit-Revision: 467703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Apr 2018 10:52:19 -0000 Author: eugen Date: Wed Apr 18 10:52:18 2018 New Revision: 467703 URL: https://svnweb.freebsd.org/changeset/ports/467703 Log: net/libdnet: unbreak compilation for non-default FreeBSD builds libdnet fails to compile for non-default FreeBSD build with pf/ipfilter excluded but ipfw included because its ipfw support staled from ipfw1 times and does not apply to modern ipfw implementation. PORTREVISION not changed because the change is effectively 'no-op' for default build. PR: 227490 Added: head/net/libdnet/files/ head/net/libdnet/files/patch-configure (contents, props changed) Added: head/net/libdnet/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libdnet/files/patch-configure Wed Apr 18 10:52:18 2018 (r467703) @@ -0,0 +1,30 @@ +--- configure.orig 2007-01-20 19:30:22.000000000 +0700 ++++ configure 2018-04-16 18:23:18.054769000 +0700 +@@ -22247,27 +22247,6 @@ + *) LIBOBJS="$LIBOBJS fw-pf.$ac_objext" ;; + esac + +-elif test "$ac_cv_header_netinet_ip_fw_h" = yes ; then +- case "$host_os" in +- *freebsd5*) +- case $LIBOBJS in +- "fw-none.$ac_objext" | \ +- *" fw-none.$ac_objext" | \ +- "fw-none.$ac_objext "* | \ +- *" fw-none.$ac_objext "* ) ;; +- *) LIBOBJS="$LIBOBJS fw-none.$ac_objext" ;; +-esac +- ;; +- *) +- case $LIBOBJS in +- "fw-ipfw.$ac_objext" | \ +- *" fw-ipfw.$ac_objext" | \ +- "fw-ipfw.$ac_objext "* | \ +- *" fw-ipfw.$ac_objext "* ) ;; +- *) LIBOBJS="$LIBOBJS fw-ipfw.$ac_objext" ;; +-esac +- ;; +- esac + elif test "$ac_cv_header_netinet_ip_fil_h" = yes ; then + case $LIBOBJS in + "fw-ipf.$ac_objext" | \