Files
2021-01-07 23:12:06 -06:00

1.7 KiB

layout, title, grand_parent, parent, nav_order, date, original
layout title grand_parent parent nav_order date original
forum Re: Is there a way to automate bitcoin payments for a website? Forum Posts Bitcoin Forum 100 2010-05-18 02:58:11 UTC https://bitcointalk.org/index.php?topic=112.msg1143#msg1143

Re: Is there a way to automate bitcoin payments for a website?


Re: Is there a way to automate bitcoin payments for a website?
May 18, 2010, 02:58:11 AM

A little late, but in case anyone else has the same issue. The compile dump had 2 warnings (that were 20 lines long) and 2 link errors. The errors were:

Quote

obj/nogui/init.o(.gnu.linkonce.t._ZNK13wxArrayString4ItemEm+0x13): In function wxArrayString::Item(unsigned long) const': /usr/local/include/wx-2.9/wx/buffer.h:42: undefined reference to wxTheAssertHandler'

obj/nogui/init.o(.gnu.linkonce.t._ZNK13wxArrayString4ItemEm+0x45): In function wxArrayString::Item(unsigned long) const': /usr/src/bitcoin/trunk/uint256.h:526: undefined reference to wxOnAssert(char const*, int, char const*, char const*, wchar_t const*)'

Those are probably due to switching to the release build of wxWidgets instead of debug. They're moving towards only debug build and ditching the release build, so they probably don't care that their release build is broken by referring to non-existent assert stuff. There's nothing to fear about the debug build. It's fully suitable for releases.

bitcoind runs as a daemon and can either be controlled by command line or JSON-RPC.

Thanks madhatter and generica for detailing the instructions for building on freebsd.