From owner-svn-ports-head@FreeBSD.ORG Sat Apr 12 11:21:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 043D6E91; Sat, 12 Apr 2014 11:21:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 E5E001A80; Sat, 12 Apr 2014 11:21:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3CBLCBW001850; Sat, 12 Apr 2014 11:21:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3CBLCG0001848; Sat, 12 Apr 2014 11:21:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201404121121.s3CBLCG0001848@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 12 Apr 2014 11:21:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351085 - in head/sysutils/bbcp: . files X-SVN-Group: ports-head 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.17 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: Sat, 12 Apr 2014 11:21:13 -0000 Author: bapt Date: Sat Apr 12 11:21:12 2014 New Revision: 351085 URL: http://svnweb.freebsd.org/changeset/ports/351085 QAT: https://qat.redports.org/buildarchive/r351085/ Log: Fix build with clang Added: head/sysutils/bbcp/files/ head/sysutils/bbcp/files/patch-src__bbcp.C (contents, props changed) Modified: head/sysutils/bbcp/Makefile Modified: head/sysutils/bbcp/Makefile ============================================================================== --- head/sysutils/bbcp/Makefile Sat Apr 12 10:48:25 2014 (r351084) +++ head/sysutils/bbcp/Makefile Sat Apr 12 11:21:12 2014 (r351085) @@ -11,10 +11,9 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= jhein@symmetricom.com COMMENT= Secure and fast copy utility -LICENSE= BSD +LICENSE= BSD2CLAUSE USES= tar:xz -USE_GCC= yes PLIST_FILES= bin/bbcp PORTDOCS= ${PORTNAME}.pdf Added: head/sysutils/bbcp/files/patch-src__bbcp.C ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bbcp/files/patch-src__bbcp.C Sat Apr 12 11:21:12 2014 (r351085) @@ -0,0 +1,10 @@ +--- ./src/bbcp.C.orig 2012-05-03 21:57:39.000000000 +0200 ++++ ./src/bbcp.C 2014-04-12 13:19:42.914184967 +0200 +@@ -58,6 +58,7 @@ + /* m a i n */ + /******************************************************************************/ + ++int + main(int argc, char *argv[], char *envp[]) + { + bbcp_Node *Source, *Sink;