svn commit: r303607 - in head/net-p2p/bitcoin: . files

Steve Wills swills at FreeBSD.org
Mon Sep 3 17:40:22 UTC 2012


Author: swills
Date: Mon Sep  3 17:40:21 2012
New Revision: 303607
URL: http://svn.freebsd.org/changeset/ports/303607

Log:
  - Fix another high CPU usage condition

Added:
  head/net-p2p/bitcoin/files/patch-bitcoin.cpp   (contents, props changed)
Modified:
  head/net-p2p/bitcoin/Makefile

Modified: head/net-p2p/bitcoin/Makefile
==============================================================================
--- head/net-p2p/bitcoin/Makefile	Mon Sep  3 17:12:51 2012	(r303606)
+++ head/net-p2p/bitcoin/Makefile	Mon Sep  3 17:40:21 2012	(r303607)
@@ -7,7 +7,7 @@
 
 PORTNAME=	bitcoin
 PORTVERSION=	0.6.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net-p2p finance
 
 MAINTAINER=	ports at FreeBSD.org

Added: head/net-p2p/bitcoin/files/patch-bitcoin.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/bitcoin/files/patch-bitcoin.cpp	Mon Sep  3 17:40:21 2012	(r303607)
@@ -0,0 +1,20 @@
+--- src/qt/bitcoin.cpp.orig	2012-06-19 16:44:55.000000000 -0400
++++ src/qt/bitcoin.cpp	2012-09-03 13:30:43.641710746 -0400
+@@ -134,7 +134,7 @@
+ #ifndef BITCOIN_QT_TEST
+ int main(int argc, char *argv[])
+ {
+-#if !defined(MAC_OSX) && !defined(WIN32)
++#if !defined(MAC_OSX) && !defined(WIN32) && !defined(__FreeBSD__)
+ // TODO: implement qtipcserver.cpp for Mac and Windows
+ 
+     // Do this early as we don't want to bother initializing if we are just calling IPC
+@@ -261,7 +261,7 @@
+                 // Place this here as guiref has to be defined if we dont want to lose URIs
+                 ipcInit();
+ 
+-#if !defined(MAC_OSX) && !defined(WIN32)
++#if !defined(MAC_OSX) && !defined(WIN32) && !defined(__FreeBSD__)
+ // TODO: implement qtipcserver.cpp for Mac and Windows
+ 
+                 // Check for URI in argv



More information about the svn-ports-head mailing list