]> Git Repo - VerusCoin.git/commitdiff
build: Remove -DBOOST_SPIRIT_THREADSAFE
authorWladimir J. van der Laan <[email protected]>
Sun, 21 Jun 2015 06:22:31 +0000 (08:22 +0200)
committerJack Grigg <[email protected]>
Fri, 3 Mar 2017 18:57:14 +0000 (10:57 -0800)
Now that boost spirit is no longer used, `-DBOOST_SPIRIT_THREADSAFE`
doesn't need to be passed to the compiler anymore.

configure.ac
src/rpcprotocol.cpp

index e7fb4a9278dd57f87c4d53fcd9aeba9341a6c159..54d92c238610eaad9f30f08d4e2a0ea2709c1204 100644 (file)
@@ -193,7 +193,7 @@ fi
 if test "x$CXXFLAGS_overridden" = "xno"; then
   CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wno-self-assign"
 fi
-CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
+CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
 
 AC_ARG_WITH([utils],
   [AS_HELP_STRING([--with-utils],
index 684feb82336e33f9dca1fb31b1d84837cc001c37..ecc1d952a40c49caa860d3ad2f92a5534f9b6f4b 100644 (file)
@@ -253,7 +253,6 @@ int ReadHTTPMessage(std::basic_istream<char>& stream, map<string,
  *
  * 1.0 spec: http://json-rpc.org/wiki/specification
  * 1.2 spec: http://jsonrpc.org/historical/json-rpc-over-http.html
- * http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
  */
 
 string JSONRPCRequest(const string& strMethod, const UniValue& params, const UniValue& id)
This page took 0.027897 seconds and 4 git commands to generate.