From owner-svn-ports-head@FreeBSD.ORG Wed Jul 10 12:18:22 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9BD712B9; Wed, 10 Jul 2013 12:18:22 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8E83C19EB; Wed, 10 Jul 2013 12:18:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6ACIMqf024792; Wed, 10 Jul 2013 12:18:22 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6ACIMdZ024790; Wed, 10 Jul 2013 12:18:22 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201307101218.r6ACIMdZ024790@svn.freebsd.org> From: Rene Ladan Date: Wed, 10 Jul 2013 12:18:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322677 - head/net/boinc-client/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.14 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, 10 Jul 2013 12:18:22 -0000 Author: rene Date: Wed Jul 10 12:18:21 2013 New Revision: 322677 URL: http://svnweb.freebsd.org/changeset/ports/322677 Log: Fix build with --std=c++11 PR: ports/178712 Submitted by: Volodymyr Kostyrko Added: head/net/boinc-client/files/patch-api__boinc_api.cpp (contents, props changed) head/net/boinc-client/files/patch-client__client_msgs.h (contents, props changed) Added: head/net/boinc-client/files/patch-api__boinc_api.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/boinc-client/files/patch-api__boinc_api.cpp Wed Jul 10 12:18:21 2013 (r322677) @@ -0,0 +1,11 @@ +--- api/boinc_api.cpp.old 2013-05-17 14:10:37.000000000 +0300 ++++ api/boinc_api.cpp 2013-05-17 14:10:49.000000000 +0300 +@@ -111,7 +111,7 @@ + // CPPFLAGS=-DGETRUSAGE_IN_TIMER_THREAD + #endif + +-const char* api_version="API_VERSION_"PACKAGE_VERSION; ++const char* api_version="API_VERSION_" PACKAGE_VERSION; + static APP_INIT_DATA aid; + static FILE_LOCK file_lock; + APP_CLIENT_SHM* app_client_shm = 0; Added: head/net/boinc-client/files/patch-client__client_msgs.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/boinc-client/files/patch-client__client_msgs.h Wed Jul 10 12:18:21 2013 (r322677) @@ -0,0 +1,10 @@ +--- client/client_msgs.h.old 2013-05-17 14:13:10.000000000 +0300 ++++ client/client_msgs.h 2013-05-17 14:13:20.000000000 +0300 +@@ -73,6 +73,6 @@ + __attribute__ ((format (printf, 4, 5))) + ; + +-#define _(x) "_(\""x"\")" ++#define _(x) "_(\"" x"\")" + + #endif