I don’t know if this is the right place to post this issue. Feel free to remove if I am wrong.
I have Mac OS X 10.9.4.
CXX libbitcoin_common_a-protocol.o
CXX libbitcoin_common_a-script.o
AR libbitcoin_common.a
CXX rpcclient.o
In file included from rpcclient.cpp:7:
In file included from ./rpcclient.h:9:
In file included from ./json/json_spirit_reader_template.h:9:
In file included from ./json/json_spirit_value.h:20:
/usr/local/include/boost/config.hpp:26:12: fatal error: 'boost/config/user.hpp' file not found
# include BOOST_USER_CONFIG
^
/usr/local/include/boost/config.hpp:22:29: note: expanded from macro 'BOOST_USER_CONFIG'
# define BOOST_USER_CONFIG <boost/config/user.hpp>
^
1 error generated.
make[1]: *** [rpcclient.o] Error 1
make: *** [all-recursive] Error 1
The error disappears if I change manually the file "/usr/local/include/boost/config.hpp" with the absolute path to boost includes. In this case, I changed:
# define BOOST_USER_CONFIG <boost/config/user.hpp>
By
# define BOOST_USER_CONFIG </usr/local/include/boost/config/user.hpp>
and it work. But after that appear another similar problem with another file from boots includes. I can not change all files with the absolute path (I mean, I can, but I should not have to do so).
Anyone know how to solve this issue?