summaryrefslogtreecommitdiff
path: root/82/e9fb75ee84356d435797ea6b4b00ffeb6d7be3
blob: e237b3b75030785b933281ae449c6a75789c06bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
Received: from sog-mx-1.v43.ch3.sourceforge.com ([172.29.43.191]
	helo=mx.sourceforge.net)
	by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.76)
	(envelope-from <thiagocmartinsc@gmail.com>) id 1S25ru-0004O0-Ca
	for bitcoin-development@lists.sourceforge.net;
	Mon, 27 Feb 2012 19:04:18 +0000
Received-SPF: pass (sog-mx-1.v43.ch3.sourceforge.com: domain of gmail.com
	designates 209.85.212.47 as permitted sender)
	client-ip=209.85.212.47; envelope-from=thiagocmartinsc@gmail.com;
	helo=mail-vw0-f47.google.com; 
Received: from mail-vw0-f47.google.com ([209.85.212.47])
	by sog-mx-1.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128)
	(Exim 4.76) id 1S25rs-00021v-G9
	for bitcoin-development@lists.sourceforge.net;
	Mon, 27 Feb 2012 19:04:18 +0000
Received: by vbbfr13 with SMTP id fr13so1696499vbb.34
	for <bitcoin-development@lists.sourceforge.net>;
	Mon, 27 Feb 2012 11:04:11 -0800 (PST)
Received-SPF: pass (google.com: domain of thiagocmartinsc@gmail.com designates
	10.220.228.200 as permitted sender) client-ip=10.220.228.200; 
Authentication-Results: mr.google.com; spf=pass (google.com: domain of
	thiagocmartinsc@gmail.com designates 10.220.228.200 as
	permitted sender) smtp.mail=thiagocmartinsc@gmail.com;
	dkim=pass header.i=thiagocmartinsc@gmail.com
Received: from mr.google.com ([10.220.228.200])
	by 10.220.228.200 with SMTP id jf8mr7627364vcb.0.1330369451073
	(num_hops = 1); Mon, 27 Feb 2012 11:04:11 -0800 (PST)
Received: by 10.220.228.200 with SMTP id jf8mr6206966vcb.0.1330369450967; Mon,
	27 Feb 2012 11:04:10 -0800 (PST)
MIME-Version: 1.0
Received: by 10.220.117.16 with HTTP; Mon, 27 Feb 2012 11:03:39 -0800 (PST)
In-Reply-To: <AB5AEA73-93BD-440E-89F0-F0951047D71A@ceptacle.com>
References: <D55C3D18-8286-44E9-B877-6FCE7C05E980@ceptacle.com>
	<CAJSM8J0zqF2=Poknzc8R7TrTJ0DWCMBw2-K9gGhUP_Qf+J6eFg@mail.gmail.com>
	<4FF4A408-F8C9-4A50-8B13-13D3686BEB09@ceptacle.com>
	<CAJSM8J3bZYfpE9EATcYe=79s_RxvGG9BrdRQR9ivwtZnuPsL0w@mail.gmail.com>
	<CAJSM8J2nhoKsOnAeF8qBW3zOfp=sJ25sd8gnw2dMJ3GgkohDjQ@mail.gmail.com>
	<C3C58158-0DED-41A1-B4D2-BF746AFE717A@ceptacle.com>
	<CAJSM8J3255LpXbHRF+zEi0QRoM0mwuRP3FSNbSwSyz-_ge=Few@mail.gmail.com>
	<3C518667-C2A6-4D1F-988D-888964925489@ceptacle.com>
	<CAJSM8J2-+uHKJg9xjqtz785HBNY8wXtJLnw70jP0_HgNspx4Tg@mail.gmail.com>
	<AB5AEA73-93BD-440E-89F0-F0951047D71A@ceptacle.com>
From: =?ISO-2022-JP?B?TWFydGlueCAtIBskQiU4JSchPCVgJTobKEI=?=
	<thiagocmartinsc@gmail.com>
Date: Mon, 27 Feb 2012 16:03:39 -0300
Message-ID: <CAJSM8J2ytXR0RSL=3+Se6mggH+pDmnkSx+CUp-bcod4qmJ3ObA@mail.gmail.com>
To: =?ISO-8859-1?Q?Michael_Gr=F8nager?= <gronager@ceptacle.com>
Content-Type: multipart/alternative; boundary=14dae9cdc0f98b812404b9f6c60f
X-Spam-Score: -0.6 (/)
X-Spam-Report: Spam Filtering performed by mx.sourceforge.net.
	See http://spamassassin.org/tag/ for more details.
	-1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for
	sender-domain
	0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider
	(thiagocmartinsc[at]gmail.com)
	-0.0 SPF_PASS               SPF: sender matches SPF record
	1.0 HTML_MESSAGE           BODY: HTML included in message
	-0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from
	author's domain
	0.1 DKIM_SIGNED            Message has a DKIM or DK signature,
	not necessarily valid
	-0.1 DKIM_VALID Message has at least one valid DKIM or DK signature
X-Headers-End: 1S25rs-00021v-G9
Cc: Bitcoin Dev <bitcoin-development@lists.sourceforge.net>
Subject: Re: [Bitcoin-development] Announcement: libcoin
X-BeenThere: bitcoin-development@lists.sourceforge.net
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: <bitcoin-development.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=unsubscribe>
List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development>
List-Post: <mailto:bitcoin-development@lists.sourceforge.net>
List-Help: <mailto:bitcoin-development-request@lists.sourceforge.net?subject=help>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=subscribe>
X-List-Received-Date: Mon, 27 Feb 2012 19:04:18 -0000

--14dae9cdc0f98b812404b9f6c60f
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

AWESOME!! Thank you!!

Anyway, I found a new problem... lol

/usr/local/bin/bitcoind getinfo #okay
{
    "version" : 40001,
    "blocks" : 168753,
    "connections" : 8,
    "difficulty" : 1376302.26788638,
    "testnet" : false
}

/usr/local/bin/bitcoind getaccountaddress ""  # okay...
1J4vNcvEdeCuLH4yvyoC2gxFEF4zquoJ87

/usr/local/bin/bitcoind listaccounts # NOT okay...
{
}

/usr/local/bin/bitcoind getaccountaddress "teste" # okay
1E6pGh6AAtuJdFXheZMp1zdYmvdqAQn9QT

/usr/local/bin/bitcoind listaccounts # NOT okay...
{
    "teste" : 0.00000000
}

Where is my default account listed at "listaccounts" output?!

Best,
Thiago

2012/2/26 Michael Gr=C3=B8nager <gronager@ceptacle.com>

> And if you do an update now "help" is there too ;)
>
> /M
>
> On 25/02/2012, at 03:11, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=
=E3=82=BA wrote:
>
> > Thank you!!!
> >
> > It is all working now! Except "help"...
> >
> > Nice work Michael!!
> >
> > Best,
> > Thiago
> >
> > 2012/2/24 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> > OK - didn't took the weekend:
> >
> > support for "port" is on github now :)
> >
> > Only took two lines:
> >
> >           ("port", value<unsigned short>(&port)->default_value(8333),
> "Listen on specified port for the p2p protocol")
> >
> > and using the port option in the Node constructor (was there already):
> >
> >       Node node(chain, data_dir, args.count("nolisten") ? "" :
> "0.0.0.0", lexical_cast<string>(port)); // it is also here we specify the
> use of a proxy!
> >
> > /M
> >
> >
> >
> > On 24/02/2012, at 19:49, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=
=E3=82=BA wrote:
> >
> >> Hi Michael,
> >>
> >> Thank you for your attention!
> >>
> >> Now, I'm trying to start libcoin's bitcoind using high ports but, it
> always try to listen at 8332, no matter what I "say"...
> >>
> >> Look:
> >>
> >> $ cat .bitcoin/bitcoin.conf
> >> server=3D1
> >> daemon=3D1
> >> rpcuser=3Dlibcoin
> >> rpcpassword=3DLibCoin13
> >> rpcport=3D10332
> >> port=3D10333
> >>
> >> But:
> >>
> >> /usr/local/bin/bitcoind
> >> Error: Address already in use
> >>
> >> terminate called after throwing an instance of 'DbException'
> >>  what():  DbEnv::close: Invalid argument
> >> Aborted
> >>
> >> When I "strace it", I can see:
> >>
> >> ...
> >> bind(12, {sa_family=3DAF_INET, sin_port=3Dhtons(8333),
> sin_addr=3Dinet_addr("0.0.0.0")}, 16) =3D -1 EADDRINUSE (Address already =
in use)
> >> ...
> >>
> >> I already tried:
> >>
> >> /usr/local/bin/bitcoind --rpcport 10332
> >> /usr/local/bin/bitcoind --rpcport=3D10332
> >>
> >> Without success...
> >>
> >> Thanks again!
> >> Thiago
> >>
> >> 2012/2/24 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> >> Hi Thiago,
> >>
> >> Forgot to comment on the two latter:
> >>
> >>> $ bitcoind getaccountaddress ""
> >>> HTTP error code: 401
> >>> Error: couldn't parse reply from server
> >>>
> >>> $ bitcoind listaccounts
> >>> HTTP error code: 401
> >>> Error: couldn't parse reply from server
> >>>
> >>
> >> 401 =3D permission denied - you need to setup username / password eith=
er
> on the commandline or in the bicoin.conf file to access those commands...
> >>
> >> See in the bitcoind.cpp file for commands that you can use with and
> without auth...
> >>
> >> Those that contains an "auth" requires auth:
> >>
> >>      server.registerMethod(method_ptr(new GetBalance(wallet)), auth);
> >>
> >> As opposed to:
> >>
> >>      server.registerMethod(method_ptr(new GetInfo(node)));
> >>
> >> auth is defined by:
> >>
> >>      Auth auth(rpc_user, rpc_pass); // if rpc_user and rpc_pass are no=
t
> set, all authenticated methods becomes disallowed.
> >>
> >> so you just experience the case explained in the comment ;) I admit
> that the output could be more readable, though!
> >>
> >> /M
> >>
> >>
> >>>
> >>> Any tips?! lol
> >>>
> >>> Thanks!
> >>> Thiago
> >>>
> >>> 2012/2/23 Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=E3=82=BA <th=
iagocmartinsc@gmail.com>
> >>> 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=C3=B8nager <gronager@ceptacle.com>
> >>> 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 library
> >>>
> >>> /M
> >>>
> >>>
> >>> On 23/02/2012, at 18:31, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=
=A0=E3=82=BA wrote:
> >>>
> >>>> 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 thi=
s
> machine, I have compiled and running Bitcoin (from sources), Namecoin,
> Devcoin, Litecoin, IXcoin and I0coin, all from sources but, when I try to
> compile libcoin, I got:
> >>>>
> >>>> ----
> >>>> user@desk:~/libcoin$ ./configure
> >>>> -- The C compiler identification is GNU
> >>>> -- The CXX compiler identification is GNU
> >>>> -- Check for working C compiler: /usr/bin/gcc
> >>>> -- Check for working C compiler: /usr/bin/gcc -- works
> >>>> -- Detecting C compiler ABI info
> >>>> -- Detecting C compiler ABI info - done
> >>>> -- Check for working CXX compiler: /usr/bin/c++
> >>>> -- Check for working CXX compiler: /usr/bin/c++ -- works
> >>>> -- Detecting CXX compiler ABI info
> >>>> -- Detecting CXX compiler ABI info - done
> >>>> -- Looking for include files CMAKE_HAVE_PTHREAD_H
> >>>> -- Looking for include files CMAKE_HAVE_PTHREAD_H - found
> >>>> -- Looking for pthread_create in pthreads
> >>>> -- Looking for pthread_create in pthreads - not found
> >>>> -- Looking for pthread_create in pthread
> >>>> -- Looking for pthread_create in pthread - found
> >>>> -- Found Threads: TRUE
> >>>> -- Looking for XOpenDisplay in
> /usr/lib/i386-linux-gnu/libX11.so;/usr/lib/i386-linux-gnu/libXext.so
> >>>> -- Looking for XOpenDisplay in
> /usr/lib/i386-linux-gnu/libX11.so;/usr/lib/i386-linux-gnu/libXext.so - fo=
und
> >>>> -- Looking for gethostbyname
> >>>> -- Looking for gethostbyname - found
> >>>> -- Looking for connect
> >>>> -- Looking for connect - found
> >>>> -- Looking for remove
> >>>> -- Looking for remove - found
> >>>> -- Looking for shmat
> >>>> -- Looking for shmat - found
> >>>> -- Looking for IceConnectionNumber in ICE
> >>>> -- Looking for IceConnectionNumber in ICE - found
> >>>> -- Found X11: /usr/lib/i386-linux-gnu/libX11.so
> >>>> -- Boost version: 1.42.0
> >>>> -- Found the following Boost libraries:
> >>>> --   date_time
> >>>> --   regex
> >>>> --   filesystem
> >>>> --   system
> >>>> --   program_options
> >>>> --   thread
> >>>> -- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libcrypto.so
> >>>> -- Looking for Q_WS_X11
> >>>> -- Looking for Q_WS_X11 - found
> >>>> -- Looking for Q_WS_WIN
> >>>> -- Looking for Q_WS_WIN - not found.
> >>>> -- Looking for Q_WS_QWS
> >>>> -- Looking for Q_WS_QWS - not found.
> >>>> -- Looking for Q_WS_MAC
> >>>> -- Looking for Q_WS_MAC - not found.
> >>>> -- Found Qt-Version 4.7.2 (using /usr/bin/qmake)
> >>>> -- Found wxWidgets: TRUE
> >>>>
> >>>> The build system is configured to install libraries to /usr/local/li=
b
> >>>> Your applications may not be able to find your installed libraries
> unless you:
> >>>>   set your LD_LIBRARY_PATH (user specific) or
> >>>>   update your ld.so configuration (system wide)
> >>>> You have an ld.so.conf.d directory on your system, so if you wish to
> ensure that
> >>>> applications find the installed libcoin libraries, system wide, you
> could install an
> >>>> libcoin specific ld.so configuration with:
> >>>>   sudo make install_ld_conf
> >>>>
> >>>> -- Configuring done
> >>>> -- Generating done
> >>>> -- Build files have been written to: /home/user/libcoin
> >>>> ----
> >>>>
> >>>> Now I tried make, without success:
> >>>>
> >>>> ----
> >>>> .....
> >>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0xf):
> undefined reference to `BN_init'
> >>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0x1e):
> undefined reference to `BN_copy'
> >>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0x38):
> undefined reference to `BN_set_negative'
> >>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0x4f):
> undefined reference to `BN_clear_free'
> >>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0xd3):
> undefined reference to `BN_clear_free'
> >>>> ../../lib/libcoin.a(Script.o): In function `operator<<(CBigNum
> const&, unsigned int)':
> >>>> Script.cpp:(.text._ZlsRK7CBigNumj[operator<<(CBigNum const&, unsigne=
d
> int)]+0x16): undefined reference to `BN_init'
> >>>> Script.cpp:(.text._ZlsRK7CBigNumj[operator<<(CBigNum const&, unsigne=
d
> int)]+0x2c): undefined reference to `BN_lshift'
> >>>> Script.cpp:(.text._ZlsRK7CBigNumj[operator<<(CBigNum const&, unsigne=
d
> int)]+0xad): undefined reference to `BN_clear_free'
> >>>> ../../lib/libcoin.a(Script.o): In function `operator>>(CBigNum
> const&, unsigned int)':
> >>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&, unsigne=
d
> int)]+0xf): undefined reference to `BN_init'
> >>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&, unsigne=
d
> int)]+0x1e): undefined reference to `BN_copy'
> >>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&, unsigne=
d
> int)]+0x47): undefined reference to `BN_clear_free'
> >>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&, unsigne=
d
> int)]+0xcb): undefined reference to `BN_clear_free'
> >>>> ../../lib/libcoin.a(Script.o): In function `operator!=3D(CBigNum
> const&, CBigNum const&)':
> >>>> Script.cpp:(.text._ZneRK7CBigNumS1_[operator!=3D(CBigNum const&,
> CBigNum const&)]+0x14): undefined reference to `BN_cmp'
> >>>> ../../lib/libcoin.a(Script.o): In function `operator>(CBigNum const&=
,
> CBigNum const&)':
> >>>> Script.cpp:(.text._ZgtRK7CBigNumS1_[operator>(CBigNum const&, CBigNu=
m
> const&)]+0x14): undefined reference to `BN_cmp'
> >>>> ../../lib/libcoin.a(Script.o): In function `uint256
> Hash<__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned
> char, std::allocator<unsigned char> > >
> >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char,
> std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned
> char*, std::vector<unsigned char, std::allocator<unsigned char> > >)':
> >>>>
> Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_iteratorIPhSt6vectorIhSaI=
hEEEEE7uint256T_S8_[uint256
> Hash<__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned
> char, std::allocator<unsigned char> > >
> >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char,
> std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned
> char*, std::vector<unsigned char, std::allocator<unsigned char> >
> >)]+0x6d): undefined reference to `SHA256'
> >>>>
> Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_iteratorIPhSt6vectorIhSaI=
hEEEEE7uint256T_S8_[uint256
> Hash<__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned
> char, std::allocator<unsigned char> > >
> >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char,
> std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned
> char*, std::vector<unsigned char, std::allocator<unsigned char> >
> >)]+0xb8): undefined reference to `SHA256'
> >>>> collect2: ld returned 1 exit status
> >>>> make[2]: *** [bin/bitcoind] Error 1
> >>>> make[1]: *** [applications/bitcoind/CMakeFiles/app_bitcoind.dir/all]
> Error 2
> >>>> make: *** [all] Error 2
> >>>> -----
> >>>>
> >>>> What can I do?!
> >>>>
> >>>> Best,
> >>>> Thiago
> >>>>
> >>>>
> >>>> On 1 February 2012 12:18, Michael Gr=C3=B8nager <gronager@ceptacle.c=
om>
> wrote:
> >>>> Dear Bitcoiners,
> >>>>
> >>>> libcoin is now in a state ready for its first release, which I would
> like to share with you!
> >>>>
> >>>> =3D=3D=3D libcoin is a crypto currency library based on the bitcoin/=
bitcoin
> "Satoshi" client. =3D=3D=3D
> >>>>
> >>>> Copenhagen, Denmark - 1st February 2012 Ceptacle announces the
> release of the first version of the crypto currency library "libcoin" bas=
ed
> on the bitcoin/bitcoin "Satoshi" client.
> >>>>
> >>>> libcoin also maintains a version of bitcoind that is a 100%
> compatible drop-in replacement of the bitcoin/bitcoind client: You can us=
e
> it on the same computer on the same files and you can call it with the sa=
me
> scripts. And you can easily extend it without touching the basic bitcoin
> source files.
> >>>>
> >>>> The libcoin/bitcoind client downloads the entire block chain 3.5
> times faster than the bitcoin/bitcoind client. This is less than 90 minut=
es
> on a modern laptop!
> >>>>
> >>>> In libcoin, the Satoshi client code has been completely refactored,
> properly encapsulating classes, removing all globals, moving from threads
> and mutexes to a pure asynchronous approach. Functionalities have been
> divided into logical units and libraries, minimizing dependencies for e.g=
.
> thin clients.
> >>>>
> >>>> libcoin is chain agnostic, all chain (bitcoin, testnet, namecoin,
> litecoin, ...) specific settings are maintained from a single class (Chai=
n)
> and hence experiments with chain settings, mining, security and digital
> currencies for research and educational purposes are easily accessible. S=
ee
> the ponzicoin example for how you define your own chain.
> >>>>
> >>>> The build system of libcoin is based on CMake and supports builds of
> static and dynamic libraries on Linux, Mac OS X, and Windows.
> >>>>
> >>>> The libcoin license is LGPL v. 3. This mean that you can use it in
> open source as well as in commercial projects, but improvements should go
> back into the libcoin library.
> >>>>
> >>>> =3D=3D=3D=3D=3D=3D
> >>>>
> >>>> Read more on libcoin on: http://github.com/ceptacle/libcoin/wiki
> >>>>
> >>>> Join libcoin on twitter: http://twitter.com/libcoin
> >>>>
> >>>> Download "libcoin Satoshi release":
> http://github.com/ceptacle/libcoin/zipball/v0.4.0.1
> >>>>
> >>>> Best regards,
> >>>>
> >>>> Michael Gronager, PhD
> >>>> Director, Ceptacle
> >>>> Jens Juels Gade 33
> >>>> 2100 Copenhagen E
> >>>> Mobile: +45 31 45 14 01
> >>>> E-mail: gronager@ceptacle.com
> >>>> Web: http://www.ceptacle.com/
> >>>>
> >>>>
> >>>>
> -------------------------------------------------------------------------=
-----
> >>>> Keep Your Developer Skills Current with LearnDevNow!
> >>>> The most comprehensive online learning library for Microsoft
> developers
> >>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3,
> MVC3,
> >>>> Metro Style Apps, more. Free future releases when you subscribe now!
> >>>> http://p.sf.net/sfu/learndevnow-d2d
> >>>> _______________________________________________
> >>>> Bitcoin-development mailing list
> >>>> Bitcoin-development@lists.sourceforge.net
> >>>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >>>>
> >>>
> >>> Michael Gronager, PhD
> >>> Director, Ceptacle
> >>> Jens Juels Gade 33
> >>> 2100 Copenhagen E
> >>> Mobile: +45 31 45 14 01
> >>> E-mail: gronager@ceptacle.com
> >>> Web: http://www.ceptacle.com/
> >>>
> >>>
> >>>
> >>
> >>
> >
> > Michael Gronager, PhD
> > Director, Ceptacle
> > Jens Juels Gade 33
> > 2100 Copenhagen E
> > Mobile: +45 31 45 14 01
> > E-mail: gronager@ceptacle.com
> > Web: http://www.ceptacle.com/
> >
> >
>
> Michael Gronager, PhD
> Director, Ceptacle
> Jens Juels Gade 33
> 2100 Copenhagen E
> Mobile: +45 31 45 14 01
> E-mail: gronager@ceptacle.com
> Web: http://www.ceptacle.com/
>
>

--14dae9cdc0f98b812404b9f6c60f
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

AWESOME!! Thank you!!<br><br>Anyway, I found a new problem... lol<br><br>/u=
sr/local/bin/bitcoind getinfo #okay<br>{<br>=C2=A0=C2=A0=C2=A0 &quot;versio=
n&quot; : 40001,<br>=C2=A0=C2=A0=C2=A0 &quot;blocks&quot; : 168753,<br>=C2=
=A0=C2=A0=C2=A0 &quot;connections&quot; : 8,<br>

=C2=A0=C2=A0=C2=A0 &quot;difficulty&quot; : 1376302.26788638,<br>=C2=A0=C2=
=A0=C2=A0 &quot;testnet&quot; : false<br>}<br><br>/usr/local/bin/bitcoind g=
etaccountaddress &quot;&quot;=C2=A0 # okay...<br>1J4vNcvEdeCuLH4yvyoC2gxFEF=
4zquoJ87<br><br>/usr/local/bin/bitcoind listaccounts # NOT okay...<br>

{<br>}<br><br>/usr/local/bin/bitcoind getaccountaddress &quot;teste&quot; #=
 okay<br>1E6pGh6AAtuJdFXheZMp1zdYmvdqAQn9QT<br><br>/usr/local/bin/bitcoind =
listaccounts # NOT okay...<br>{<br>=C2=A0=C2=A0=C2=A0 &quot;teste&quot; : 0=
.00000000<br>

}<br><br>Where is my default account listed at &quot;listaccounts&quot; out=
put?!<br><br>Best,<br>Thiago<br><br><div class=3D"gmail_quote">2012/2/26 Mi=
chael Gr=C3=B8nager <span dir=3D"ltr">&lt;<a href=3D"mailto:gronager@ceptac=
le.com">gronager@ceptacle.com</a>&gt;</span><br>

<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex">And if you do an update now &quot;help&quot;=
 is there too ;)<br>
<span class=3D"HOEnZb"><font color=3D"#888888"><br>
/M<br>
</font></span><div class=3D"HOEnZb"><div class=3D"h5"><br>
On 25/02/2012, at 03:11, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=E3=
=82=BA wrote:<br>
<br>
&gt; Thank you!!!<br>
&gt;<br>
&gt; It is all working now! Except &quot;help&quot;...<br>
&gt;<br>
&gt; Nice work Michael!!<br>
&gt;<br>
&gt; Best,<br>
&gt; Thiago<br>
&gt;<br>
&gt; 2012/2/24 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gronager@ceptacl=
e.com">gronager@ceptacle.com</a>&gt;<br>
&gt; OK - didn&#39;t took the weekend:<br>
&gt;<br>
&gt; support for &quot;port&quot; is on github now :)<br>
&gt;<br>
&gt; Only took two lines:<br>
&gt;<br>
&gt; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (&quot;port&quot;, value&lt;unsigne=
d short&gt;(&amp;port)-&gt;default_value(8333), &quot;Listen on specified p=
ort for the p2p protocol&quot;)<br>
&gt;<br>
&gt; and using the port option in the Node constructor (was there already):=
<br>
&gt;<br>
&gt; =C2=A0 =C2=A0 =C2=A0 Node node(chain, data_dir, args.count(&quot;nolis=
ten&quot;) ? &quot;&quot; : &quot;0.0.0.0&quot;, lexical_cast&lt;string&gt;=
(port)); // it is also here we specify the use of a proxy!<br>
&gt;<br>
&gt; /M<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On 24/02/2012, at 19:49, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=
=A0=E3=82=BA wrote:<br>
&gt;<br>
&gt;&gt; Hi Michael,<br>
&gt;&gt;<br>
&gt;&gt; Thank you for your attention!<br>
&gt;&gt;<br>
&gt;&gt; Now, I&#39;m trying to start libcoin&#39;s bitcoind using high por=
ts but, it always try to listen at 8332, no matter what I &quot;say&quot;..=
.<br>
&gt;&gt;<br>
&gt;&gt; Look:<br>
&gt;&gt;<br>
&gt;&gt; $ cat .bitcoin/bitcoin.conf<br>
&gt;&gt; server=3D1<br>
&gt;&gt; daemon=3D1<br>
&gt;&gt; rpcuser=3Dlibcoin<br>
&gt;&gt; rpcpassword=3DLibCoin13<br>
&gt;&gt; rpcport=3D10332<br>
&gt;&gt; port=3D10333<br>
&gt;&gt;<br>
&gt;&gt; But:<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind<br>
&gt;&gt; Error: Address already in use<br>
&gt;&gt;<br>
&gt;&gt; terminate called after throwing an instance of &#39;DbException&#3=
9;<br>
&gt;&gt; =C2=A0what(): =C2=A0DbEnv::close: Invalid argument<br>
&gt;&gt; Aborted<br>
&gt;&gt;<br>
&gt;&gt; When I &quot;strace it&quot;, I can see:<br>
&gt;&gt;<br>
&gt;&gt; ...<br>
&gt;&gt; bind(12, {sa_family=3DAF_INET, sin_port=3Dhtons(8333), sin_addr=3D=
inet_addr(&quot;0.0.0.0&quot;)}, 16) =3D -1 EADDRINUSE (Address already in =
use)<br>
&gt;&gt; ...<br>
&gt;&gt;<br>
&gt;&gt; I already tried:<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind --rpcport 10332<br>
&gt;&gt; /usr/local/bin/bitcoind --rpcport=3D10332<br>
&gt;&gt;<br>
&gt;&gt; Without success...<br>
&gt;&gt;<br>
&gt;&gt; Thanks again!<br>
&gt;&gt; Thiago<br>
&gt;&gt;<br>
&gt;&gt; 2012/2/24 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gronager@cep=
tacle.com">gronager@ceptacle.com</a>&gt;<br>
&gt;&gt; Hi Thiago,<br>
&gt;&gt;<br>
&gt;&gt; Forgot to comment on the two latter:<br>
&gt;&gt;<br>
&gt;&gt;&gt; $ bitcoind getaccountaddress &quot;&quot;<br>
&gt;&gt;&gt; HTTP error code: 401<br>
&gt;&gt;&gt; Error: couldn&#39;t parse reply from server<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; $ bitcoind listaccounts<br>
&gt;&gt;&gt; HTTP error code: 401<br>
&gt;&gt;&gt; Error: couldn&#39;t parse reply from server<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 401 =3D permission denied - you need to setup username / password =
either on the commandline or in the bicoin.conf file to access those comman=
ds...<br>
&gt;&gt;<br>
&gt;&gt; See in the bitcoind.cpp file for commands that you can use with an=
d without auth...<br>
&gt;&gt;<br>
&gt;&gt; Those that contains an &quot;auth&quot; requires auth:<br>
&gt;&gt;<br>
&gt;&gt; =C2=A0 =C2=A0 =C2=A0server.registerMethod(method_ptr(new GetBalanc=
e(wallet)), auth);<br>
&gt;&gt;<br>
&gt;&gt; As opposed to:<br>
&gt;&gt;<br>
&gt;&gt; =C2=A0 =C2=A0 =C2=A0server.registerMethod(method_ptr(new GetInfo(n=
ode)));<br>
&gt;&gt;<br>
&gt;&gt; auth is defined by:<br>
&gt;&gt;<br>
&gt;&gt; =C2=A0 =C2=A0 =C2=A0Auth auth(rpc_user, rpc_pass); // if rpc_user =
and rpc_pass are not set, all authenticated methods becomes disallowed.<br>
&gt;&gt;<br>
&gt;&gt; so you just experience the case explained in the comment ;) I admi=
t that the output could be more readable, though!<br>
&gt;&gt;<br>
&gt;&gt; /M<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Any tips?! lol<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Thanks!<br>
&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2012/2/23 Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=E3=82=
=BA &lt;<a href=3D"mailto:thiagocmartinsc@gmail.com">thiagocmartinsc@gmail.=
com</a>&gt;<br>
&gt;&gt;&gt; AWESOME!!!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I can compile libcoin at my Ubuntu 11.10... I just need to ins=
tall:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; sudo aptitude install libboost1.46-all-dev<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ...alongside with another already installed dependencies, and =
now it works!!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Thank you!<br>
&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2012/2/23 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gronager=
@ceptacle.com">gronager@ceptacle.com</a>&gt;<br>
&gt;&gt;&gt; Hi Martinx,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Another note:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; boost 1.42 and openssl 1.0 has a conflict (you will see it whe=
n you try to compile coinHTTP with that specific combination: sslv2 has bee=
n removed from openssl, but boost still references it.)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; You should do a :<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; sudo apt-get upgrade libboost-dev-all<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; to get the 1.46.1 library<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /M<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On 23/02/2012, at 18:31, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=
=E3=83=A0=E3=82=BA wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hi Michael!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Thank you for libcoin! It is a awesome evolution for Bitco=
in and for the CryptoCurrencies as a hole... Thanks!!!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Anyway, I am unable to compile libcoin under my Ubuntu 11.=
04. At this machine, I have compiled and running Bitcoin (from sources), Na=
mecoin, Devcoin, Litecoin, IXcoin and I0coin, all from sources but, when I =
try to compile libcoin, I got:<br>


&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; ----<br>
&gt;&gt;&gt;&gt; user@desk:~/libcoin$ ./configure<br>
&gt;&gt;&gt;&gt; -- The C compiler identification is GNU<br>
&gt;&gt;&gt;&gt; -- The CXX compiler identification is GNU<br>
&gt;&gt;&gt;&gt; -- Check for working C compiler: /usr/bin/gcc<br>
&gt;&gt;&gt;&gt; -- Check for working C compiler: /usr/bin/gcc -- works<br>
&gt;&gt;&gt;&gt; -- Detecting C compiler ABI info<br>
&gt;&gt;&gt;&gt; -- Detecting C compiler ABI info - done<br>
&gt;&gt;&gt;&gt; -- Check for working CXX compiler: /usr/bin/c++<br>
&gt;&gt;&gt;&gt; -- Check for working CXX compiler: /usr/bin/c++ -- works<b=
r>
&gt;&gt;&gt;&gt; -- Detecting CXX compiler ABI info<br>
&gt;&gt;&gt;&gt; -- Detecting CXX compiler ABI info - done<br>
&gt;&gt;&gt;&gt; -- Looking for include files CMAKE_HAVE_PTHREAD_H<br>
&gt;&gt;&gt;&gt; -- Looking for include files CMAKE_HAVE_PTHREAD_H - found<=
br>
&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthreads<br>
&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthreads - not found<br>
&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthread<br>
&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthread - found<br>
&gt;&gt;&gt;&gt; -- Found Threads: TRUE<br>
&gt;&gt;&gt;&gt; -- Looking for XOpenDisplay in /usr/lib/i386-linux-gnu/lib=
X11.so;/usr/lib/i386-linux-gnu/libXext.so<br>
&gt;&gt;&gt;&gt; -- Looking for XOpenDisplay in /usr/lib/i386-linux-gnu/lib=
X11.so;/usr/lib/i386-linux-gnu/libXext.so - found<br>
&gt;&gt;&gt;&gt; -- Looking for gethostbyname<br>
&gt;&gt;&gt;&gt; -- Looking for gethostbyname - found<br>
&gt;&gt;&gt;&gt; -- Looking for connect<br>
&gt;&gt;&gt;&gt; -- Looking for connect - found<br>
&gt;&gt;&gt;&gt; -- Looking for remove<br>
&gt;&gt;&gt;&gt; -- Looking for remove - found<br>
&gt;&gt;&gt;&gt; -- Looking for shmat<br>
&gt;&gt;&gt;&gt; -- Looking for shmat - found<br>
&gt;&gt;&gt;&gt; -- Looking for IceConnectionNumber in ICE<br>
&gt;&gt;&gt;&gt; -- Looking for IceConnectionNumber in ICE - found<br>
&gt;&gt;&gt;&gt; -- Found X11: /usr/lib/i386-linux-gnu/libX11.so<br>
&gt;&gt;&gt;&gt; -- Boost version: 1.42.0<br>
&gt;&gt;&gt;&gt; -- Found the following Boost libraries:<br>
&gt;&gt;&gt;&gt; -- =C2=A0 date_time<br>
&gt;&gt;&gt;&gt; -- =C2=A0 regex<br>
&gt;&gt;&gt;&gt; -- =C2=A0 filesystem<br>
&gt;&gt;&gt;&gt; -- =C2=A0 system<br>
&gt;&gt;&gt;&gt; -- =C2=A0 program_options<br>
&gt;&gt;&gt;&gt; -- =C2=A0 thread<br>
&gt;&gt;&gt;&gt; -- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libcrypto.so=
<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_X11<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_X11 - found<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_WIN<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_WIN - not found.<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_QWS<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_QWS - not found.<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_MAC<br>
&gt;&gt;&gt;&gt; -- Looking for Q_WS_MAC - not found.<br>
&gt;&gt;&gt;&gt; -- Found Qt-Version 4.7.2 (using /usr/bin/qmake)<br>
&gt;&gt;&gt;&gt; -- Found wxWidgets: TRUE<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; The build system is configured to install libraries to /us=
r/local/lib<br>
&gt;&gt;&gt;&gt; Your applications may not be able to find your installed l=
ibraries unless you:<br>
&gt;&gt;&gt;&gt; =C2=A0 set your LD_LIBRARY_PATH (user specific) or<br>
&gt;&gt;&gt;&gt; =C2=A0 update your ld.so configuration (system wide)<br>
&gt;&gt;&gt;&gt; You have an ld.so.conf.d directory on your system, so if y=
ou wish to ensure that<br>
&gt;&gt;&gt;&gt; applications find the installed libcoin libraries, system =
wide, you could install an<br>
&gt;&gt;&gt;&gt; libcoin specific ld.so configuration with:<br>
&gt;&gt;&gt;&gt; =C2=A0 sudo make install_ld_conf<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; -- Configuring done<br>
&gt;&gt;&gt;&gt; -- Generating done<br>
&gt;&gt;&gt;&gt; -- Build files have been written to: /home/user/libcoin<br=
>
&gt;&gt;&gt;&gt; ----<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Now I tried make, without success:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; ----<br>
&gt;&gt;&gt;&gt; .....<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&a=
mp;)]+0xf): undefined reference to `BN_init&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&a=
mp;)]+0x1e): undefined reference to `BN_copy&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&a=
mp;)]+0x38): undefined reference to `BN_set_negative&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&a=
mp;)]+0x4f): undefined reference to `BN_clear_free&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&a=
mp;)]+0xd3): undefined reference to `BN_clear_free&#39;<br>
&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operator&lt;&l=
t;(CBigNum const&amp;, unsigned int)&#39;:<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZlsRK7CBigNumj[operator&lt;&lt;(CBigNum=
 const&amp;, unsigned int)]+0x16): undefined reference to `BN_init&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZlsRK7CBigNumj[operator&lt;&lt;(CBigNum=
 const&amp;, unsigned int)]+0x2c): undefined reference to `BN_lshift&#39;<b=
r>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZlsRK7CBigNumj[operator&lt;&lt;(CBigNum=
 const&amp;, unsigned int)]+0xad): undefined reference to `BN_clear_free&#3=
9;<br>
&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operator&gt;&g=
t;(CBigNum const&amp;, unsigned int)&#39;:<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;(CBigNum=
 const&amp;, unsigned int)]+0xf): undefined reference to `BN_init&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;(CBigNum=
 const&amp;, unsigned int)]+0x1e): undefined reference to `BN_copy&#39;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;(CBigNum=
 const&amp;, unsigned int)]+0x47): undefined reference to `BN_clear_free&#3=
9;<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;(CBigNum=
 const&amp;, unsigned int)]+0xcb): undefined reference to `BN_clear_free&#3=
9;<br>
&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operator!=3D(C=
BigNum const&amp;, CBigNum const&amp;)&#39;:<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZneRK7CBigNumS1_[operator!=3D(CBigNum c=
onst&amp;, CBigNum const&amp;)]+0x14): undefined reference to `BN_cmp&#39;<=
br>
&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operator&gt;(C=
BigNum const&amp;, CBigNum const&amp;)&#39;:<br>
&gt;&gt;&gt;&gt; Script.cpp:(.text._ZgtRK7CBigNumS1_[operator&gt;(CBigNum c=
onst&amp;, CBigNum const&amp;)]+0x14): undefined reference to `BN_cmp&#39;<=
br>
&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `uint256 Hash&l=
t;__gnu_cxx::__normal_iterator&lt;unsigned char*, std::vector&lt;unsigned c=
har, std::allocator&lt;unsigned char&gt; &gt; &gt; &gt;(__gnu_cxx::__normal=
_iterator&lt;unsigned char*, std::vector&lt;unsigned char, std::allocator&l=
t;unsigned char&gt; &gt; &gt;, __gnu_cxx::__normal_iterator&lt;unsigned cha=
r*, std::vector&lt;unsigned char, std::allocator&lt;unsigned char&gt; &gt; =
&gt;)&#39;:<br>


&gt;&gt;&gt;&gt; Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_iteratorIP=
hSt6vectorIhSaIhEEEEE7uint256T_S8_[uint256 Hash&lt;__gnu_cxx::__normal_iter=
ator&lt;unsigned char*, std::vector&lt;unsigned char, std::allocator&lt;uns=
igned char&gt; &gt; &gt; &gt;(__gnu_cxx::__normal_iterator&lt;unsigned char=
*, std::vector&lt;unsigned char, std::allocator&lt;unsigned char&gt; &gt; &=
gt;, __gnu_cxx::__normal_iterator&lt;unsigned char*, std::vector&lt;unsigne=
d char, std::allocator&lt;unsigned char&gt; &gt; &gt;)]+0x6d): undefined re=
ference to `SHA256&#39;<br>


&gt;&gt;&gt;&gt; Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_iteratorIP=
hSt6vectorIhSaIhEEEEE7uint256T_S8_[uint256 Hash&lt;__gnu_cxx::__normal_iter=
ator&lt;unsigned char*, std::vector&lt;unsigned char, std::allocator&lt;uns=
igned char&gt; &gt; &gt; &gt;(__gnu_cxx::__normal_iterator&lt;unsigned char=
*, std::vector&lt;unsigned char, std::allocator&lt;unsigned char&gt; &gt; &=
gt;, __gnu_cxx::__normal_iterator&lt;unsigned char*, std::vector&lt;unsigne=
d char, std::allocator&lt;unsigned char&gt; &gt; &gt;)]+0xb8): undefined re=
ference to `SHA256&#39;<br>


&gt;&gt;&gt;&gt; collect2: ld returned 1 exit status<br>
&gt;&gt;&gt;&gt; make[2]: *** [bin/bitcoind] Error 1<br>
&gt;&gt;&gt;&gt; make[1]: *** [applications/bitcoind/CMakeFiles/app_bitcoin=
d.dir/all] Error 2<br>
&gt;&gt;&gt;&gt; make: *** [all] Error 2<br>
&gt;&gt;&gt;&gt; -----<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; What can I do?!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Best,<br>
&gt;&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On 1 February 2012 12:18, Michael Gr=C3=B8nager &lt;<a hre=
f=3D"mailto:gronager@ceptacle.com">gronager@ceptacle.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt; Dear Bitcoiners,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; libcoin is now in a state ready for its first release, whi=
ch I would like to share with you!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; =3D=3D=3D libcoin is a crypto currency library based on th=
e bitcoin/bitcoin &quot;Satoshi&quot; client. =3D=3D=3D<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Copenhagen, Denmark - 1st February 2012 Ceptacle announces=
 the release of the first version of the crypto currency library &quot;libc=
oin&quot; based on the bitcoin/bitcoin &quot;Satoshi&quot; client.<br>


&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; libcoin also maintains a version of bitcoind that is a 100=
% compatible drop-in replacement of the bitcoin/bitcoind client: You can us=
e it on the same computer on the same files and you can call it with the sa=
me scripts. And you can easily extend it without touching the basic bitcoin=
 source files.<br>


&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; The libcoin/bitcoind client downloads the entire block cha=
in 3.5 times faster than the bitcoin/bitcoind client. This is less than 90 =
minutes on a modern laptop!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; In libcoin, the Satoshi client code has been completely re=
factored, properly encapsulating classes, removing all globals, moving from=
 threads and mutexes to a pure asynchronous approach. Functionalities have =
been divided into logical units and libraries, minimizing dependencies for =
e.g. thin clients.<br>


&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; libcoin is chain agnostic, all chain (bitcoin, testnet, na=
mecoin, litecoin, ...) specific settings are maintained from a single class=
 (Chain) and hence experiments with chain settings, mining, security and di=
gital currencies for research and educational purposes are easily accessibl=
e. See the ponzicoin example for how you define your own chain.<br>


&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; The build system of libcoin is based on CMake and supports=
 builds of static and dynamic libraries on Linux, Mac OS X, and Windows.<br=
>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; The libcoin license is LGPL v. 3. This mean that you can u=
se it in open source as well as in commercial projects, but improvements sh=
ould go back into the libcoin library.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; =3D=3D=3D=3D=3D=3D<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Read more on libcoin on: <a href=3D"http://github.com/cept=
acle/libcoin/wiki" target=3D"_blank">http://github.com/ceptacle/libcoin/wik=
i</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Join libcoin on twitter: <a href=3D"http://twitter.com/lib=
coin" target=3D"_blank">http://twitter.com/libcoin</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Download &quot;libcoin Satoshi release&quot;: <a href=3D"h=
ttp://github.com/ceptacle/libcoin/zipball/v0.4.0.1" target=3D"_blank">http:=
//github.com/ceptacle/libcoin/zipball/v0.4.0.1</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Best regards,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Michael Gronager, PhD<br>
&gt;&gt;&gt;&gt; Director, Ceptacle<br>
&gt;&gt;&gt;&gt; Jens Juels Gade 33<br>
&gt;&gt;&gt;&gt; 2100 Copenhagen E<br>
&gt;&gt;&gt;&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D=
"+4531451401">+45 31 45 14 01</a><br>
&gt;&gt;&gt;&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com">gronager@=
ceptacle.com</a><br>
&gt;&gt;&gt;&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank=
">http://www.ceptacle.com/</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; ----------------------------------------------------------=
--------------------<br>
&gt;&gt;&gt;&gt; Keep Your Developer Skills Current with LearnDevNow!<br>
&gt;&gt;&gt;&gt; The most comprehensive online learning library for Microso=
ft developers<br>
&gt;&gt;&gt;&gt; is just $99.99! Visual Studio, SharePoint, SQL - plus HTML=
5, CSS3, MVC3,<br>
&gt;&gt;&gt;&gt; Metro Style Apps, more. Free future releases when you subs=
cribe now!<br>
&gt;&gt;&gt;&gt; <a href=3D"http://p.sf.net/sfu/learndevnow-d2d" target=3D"=
_blank">http://p.sf.net/sfu/learndevnow-d2d</a><br>
&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.sourceforge.ne=
t">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/lists/listinfo/bi=
tcoin-development" target=3D"_blank">https://lists.sourceforge.net/lists/li=
stinfo/bitcoin-development</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Michael Gronager, PhD<br>
&gt;&gt;&gt; Director, Ceptacle<br>
&gt;&gt;&gt; Jens Juels Gade 33<br>
&gt;&gt;&gt; 2100 Copenhagen E<br>
&gt;&gt;&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+45=
31451401">+45 31 45 14 01</a><br>
&gt;&gt;&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com">gronager@cept=
acle.com</a><br>
&gt;&gt;&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">ht=
tp://www.ceptacle.com/</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt; Michael Gronager, PhD<br>
&gt; Director, Ceptacle<br>
&gt; Jens Juels Gade 33<br>
&gt; 2100 Copenhagen E<br>
&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+4531451401=
">+45 31 45 14 01</a><br>
&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com">gronager@ceptacle.com=
</a><br>
&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">http://www=
.ceptacle.com/</a><br>
&gt;<br>
&gt;<br>
<br>
Michael Gronager, PhD<br>
Director, Ceptacle<br>
Jens Juels Gade 33<br>
2100 Copenhagen E<br>
Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+4531451401">+45=
 31 45 14 01</a><br>
E-mail: <a href=3D"mailto:gronager@ceptacle.com">gronager@ceptacle.com</a><=
br>
Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">http://www.cept=
acle.com/</a><br>
<br>
</div></div></blockquote></div><br>

--14dae9cdc0f98b812404b9f6c60f--