Skip to content

Commit

Permalink
build: Remove -DBOOST_SPIRIT_THREADSAFE
Browse files Browse the repository at this point in the history
Now that boost spirit is no longer used, `-DBOOST_SPIRIT_THREADSAFE`
doesn't need to be passed to the compiler anymore.
  • Loading branch information
laanwj authored and str4d committed Mar 3, 2017
1 parent 7cc6648 commit 55fca51
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down
1 change: 0 additions & 1 deletion src/rpcprotocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 55fca51

Please sign in to comment.