Browse Source

Merge branch 'FSM' into jl777

pull/27/head
jl777 5 years ago
parent
commit
0087b1e546
  1. 3
      src/cc/makerogue
  2. 8
      src/wallet/db.h

3
src/cc/makerogue

@ -35,6 +35,3 @@ else
echo ROGUE BUILD FAILED
exit 1
fi
rm ../libcc.so
cp librogue.so ../libcc.so

8
src/wallet/db.h

@ -34,7 +34,13 @@
#include <boost/filesystem/path.hpp>
#ifdef BUILD_ROGUE
#include "../depends/x86_64-unknown-linux-gnu/include/db_cxx.h"
#ifdef __APPLE__
#include "../depends/x86_64-apple-darwin18.6.0/include/db_cxx.h"
#elif defined(_WIN32)
#include "../depends/x86_64-w64-mingw32/include/db_cxx.h"
#else
#include "../depends/x86_64-unknown-linux-gnu/include/db_cxx.h"
#endif
#else
#include <db_cxx.h>
#endif

Loading…
Cancel
Save