Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Martinx - ジェームズ
Hi Michael! Thank you for libcoin! It is a awesome evolution for Bitcoin and for the CryptoCurrencies as a hole... Thanks!!! Anyway, I am unable to compile libcoin under my Ubuntu 11.04. At this machine, I have compiled and running Bitcoin (from sources), Namecoin, Devcoin, Litecoin, IXcoin and

Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Michael Grønager
Hi Martinx, I am looking into it now - I just tried on my Ubuntu 11.10 - I got by Script.cpp with no problems. I have Boost 1.48.1, but I can't see that causing the issue - I will retry with a cleaner machine... /M On 23/02/2012, at 18:31, Martinx - ジェームズ wrote: > Hi Michael! > > Thank you

Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Michael Grønager
I tried on another 11.10 machine with the normal boost 1.42 and things also worked as they should. However, I noticed a difference between your cmake output and mine: > -- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libcrypto.so -- Found OpenSSL: /usr/lib/i386-linux-gnu/libssl.so;/usr/lib/i386

Re: [Bitcoin-development] BitcoinQt eating 100% CPU

2012-02-23 Thread Michael Gronager
A follow up on my mail from the other day (got it send from the wrong email address...) I now exit the ipc thread at startup by inserting: void ipcThread(void* parg) { ipcShutdown(); return; Bitcoin-Qt is now running nicely using around 0.9% CPU. So it seems like the culprit was indeed l

Re: [Bitcoin-development] BitcoinQt eating 100% CPU

2012-02-23 Thread Gavin Andresen
Bitcoin-Qt is now running nicely using around 0.9% CPU. So it seems like > the culprit was indeed line 31: > > if(mq->timed_receive(&strBuf, sizeof(strBuf), nSize, nPriority, d)) > > Others, who have seen similar issues ? > > I can definitely reproduce the issue on my mac. If I recall correctly, t

Re: [Bitcoin-development] BitcoinQt eating 100% CPU

2012-02-23 Thread Luke-Jr
On Thursday, February 23, 2012 3:26:40 PM Gavin Andresen wrote: > If I recall correctly, the Mac Bitcoin-Qt does not register itself as a > bitcoin: URL handler, so the easiest fix for the 0.6 release would be to > just never launch the ipcThread #ifdef Q_WS_MAC Wouldn't that prevent the user from

Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Michael Grønager
Hi Martinx, Another note: boost 1.42 and openssl 1.0 has a conflict (you will see it when you try to compile coinHTTP with that specific combination: sslv2 has been removed from openssl, but boost still references it.) You should do a : sudo apt-get upgrade libboost-dev-all to get the 1.46.1

Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Martinx - ジェームズ
AWESOME!!! I can compile libcoin at my Ubuntu 11.10... I just need to install: sudo aptitude install libboost1.46-all-dev ...alongside with another already installed dependencies, and now it works!! Thank you! Thiago 2012/2/23 Michael Grønager > Hi Martinx, > > Another note: > > boost 1.42 a

Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Martinx - ジェームズ
Hi Michael! I just run "bitcoind", from libcoin ("sudo make install") sources, with empty ~/.bitcoin directory and: Terminal 1: bitcoind # apparently okay Terminal 2: $ bitcoind getinfo # okay { "version" : 40001, "blocks" : 57733, "connections" : 8, "difficulty" : 11.84622815,

Re: [Bitcoin-development] Announcement: libcoin

2012-02-23 Thread Michael Grønager
Hi Thiago I had in mind using the JSON RPC 2.0 system.description standard command instead of help, but I got sidetracked implementing it. Will look into it asap. Thanks for noting! /M On 24/02/2012, at 03:17, Martinx - ジェームズ wrote: > Hi Michael! > > I just run "bitcoind", from libcoin ("sud