From e5ee6dc7114db23415ef71e73c0bba38db0cec9d Mon Sep 17 00:00:00 2001 From: wakgill <76528604+wakgill@users.noreply.github.com> Date: Thu, 7 Jan 2021 23:12:06 -0600 Subject: [PATCH] Create 100.md --- docs/forum/bitcoin-forum/100.md | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/forum/bitcoin-forum/100.md diff --git a/docs/forum/bitcoin-forum/100.md b/docs/forum/bitcoin-forum/100.md new file mode 100644 index 0000000..df8968c --- /dev/null +++ b/docs/forum/bitcoin-forum/100.md @@ -0,0 +1,35 @@ +--- +layout: forum +title: 'Re: Is there a way to automate bitcoin payments for a website?' +grand_parent: Forum Posts +parent: Bitcoin Forum +nav_order: 100 +date: 2010-05-18 02:58:11 UTC +original: 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.
+
+