Skip to content

Commit b666820

Browse files
committed
build: Remove -DBOOST_SPIRIT_THREADSAFE
Now that boost spirit is no longer used, `-DBOOST_SPIRIT_THREADSAFE` doesn't need to be passed to the compiler anymore.
1 parent 247b914 commit b666820

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ fi
162162
if test "x$CXXFLAGS_overridden" = "xno"; then
163163
CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter"
164164
fi
165-
CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
165+
CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
166166

167167
AC_ARG_WITH([utils],
168168
[AS_HELP_STRING([--with-utils],

src/rpcprotocol.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ int ReadHTTPMessage(std::basic_istream<char>& stream, map<string,
251251
*
252252
* 1.0 spec: http://json-rpc.org/wiki/specification
253253
* 1.2 spec: http://jsonrpc.org/historical/json-rpc-over-http.html
254-
* http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
255254
*/
256255

257256
string JSONRPCRequest(const string& strMethod, const UniValue& params, const UniValue& id)

0 commit comments

Comments
 (0)