From owner-svn-ports-branches@freebsd.org Sun Jul 9 03:00:18 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CDB9DA99CC; Sun, 9 Jul 2017 03:00:18 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id DBE8A74FC4; Sun, 9 Jul 2017 03:00:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6930GOx046269; Sun, 9 Jul 2017 03:00:16 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6930G5L046268; Sun, 9 Jul 2017 03:00:16 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201707090300.v6930G5L046268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 9 Jul 2017 03:00:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445364 - branches/2017Q3/net-mgmt/rancid3/files X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/net-mgmt/rancid3/files X-SVN-Commit-Revision: 445364 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jul 2017 03:00:18 -0000 Author: feld Date: Sun Jul 9 03:00:16 2017 New Revision: 445364 URL: https://svnweb.freebsd.org/changeset/ports/445364 Log: MFH: r445363 net-mgmt/rancid3: Fix building in jails without networking Approved by: ports-secteam (with hat) Added: branches/2017Q3/net-mgmt/rancid3/files/patch-configure - copied unchanged from r445363, head/net-mgmt/rancid3/files/patch-configure Modified: Directory Properties: branches/2017Q3/ (props changed) Copied: branches/2017Q3/net-mgmt/rancid3/files/patch-configure (from r445363, head/net-mgmt/rancid3/files/patch-configure) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/net-mgmt/rancid3/files/patch-configure Sun Jul 9 03:00:16 2017 (r445364, copy of r445363, head/net-mgmt/rancid3/files/patch-configure) @@ -0,0 +1,46 @@ +--- configure.orig 2017-07-09 02:56:22 UTC ++++ configure +@@ -5471,24 +5471,25 @@ fi + # ping seems to take one of two formats for count (N) + # BSD: ping -c N host + # SVR: ping host N +-$PING_PATH -c 1 -v 127.0.0.1 > /dev/null 2>&1 +-if test $? -eq 0 ; then +- LG_PING_CMD="$PING_PATH -c 1" +-else +- $PING_PATH 127.0.0.1 56 1 > /dev/null 2>&1 +- if test $? -eq 0 ; then +- LG_PING_CMD="$PING_PATH" +- else +- # cygwin using windows ping? +- $PING_PATH -n 1 127.0.0.1 > /dev/null 2>&1 +- if test $? -eq 0 ; then +- LG_PING_CMD="$PING_PATH -n 1" +- else +- as_fn_error $? "can't figure out how to pass count == 1 to $PING_PATH." "$LINENO" 5 +- exit 1 +- fi +- fi +-fi ++#$PING_PATH -c 1 -v 127.0.0.1 > /dev/null 2>&1 ++#if test $? -eq 0 ; then ++# LG_PING_CMD="$PING_PATH -c 1" ++#else ++# $PING_PATH 127.0.0.1 56 1 > /dev/null 2>&1 ++# if test $? -eq 0 ; then ++# LG_PING_CMD="$PING_PATH" ++# else ++# # cygwin using windows ping? ++# $PING_PATH -n 1 127.0.0.1 > /dev/null 2>&1 ++# if test $? -eq 0 ; then ++# LG_PING_CMD="$PING_PATH -n 1" ++# else ++# as_fn_error $? "can't figure out how to pass count == 1 to $PING_PATH." "$LINENO" 5 ++# exit 1 ++# fi ++# fi ++#fi ++LG_PING_CMD="$PING_PATH -c 1" + + rd_cv_lg_ping_cmd=$LG_PING_CMD +