Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jul 2013 12:18:22 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r322677 - head/net/boinc-client/files
Message-ID:  <201307101218.r6ACIMdZ024790@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <c.kworr@gmail.com>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307101218.r6ACIMdZ024790>