Skip to content

Commit

Permalink
[Build] Make sure Boost headers are included for libzerocoin
Browse files Browse the repository at this point in the history
Custom boost locations not using pkg_config can result in a header
include not being found when compiling the libzerocoin library. This
quick fix ensures that the `BOOST_CPPFLAGS` are explicitely included.
  • Loading branch information
Fuzzbawls committed May 21, 2018
1 parent 732fa37 commit 811785c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ crypto_libbitcoin_crypto_a_SOURCES = \
crypto/sph_types.h

# libzerocoin library
libzerocoin_libbitcoin_zerocin_a_CPPFLAGS = $(AM_CPPFLAGS)
libzerocoin_libbitcoin_zerocin_a_CPPFLAGS = $(AM_CPPFLAGS) $(BOOST_CPPFLAGS)
libzerocoin_libbitcoin_zerocin_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
libzerocoin_libbitcoin_zerocoin_a_SOURCES = \
libzerocoin/Accumulator.h \
Expand Down

0 comments on commit 811785c

Please sign in to comment.