File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1919 <!-- can't define _SCL_SECURE_NO_WARNINGS when using boost, can produce redefined symbol error, use 4996 instead -->
2020 <DisableSpecificWarnings >4996;%(DisableSpecificWarnings)</DisableSpecificWarnings >
2121 <!-- NOMINMAX enables use of std::min/max without conflict. -->
22- <PreprocessorDefinitions >NOMINMAX;%(PreprocessorDefinitions)</PreprocessorDefinitions >
22+ <!-- WIN32_LEAN_AND_MEAN avoids boost conflict: lists.boost.org/boost-users/2008/07/37824.php. -->
23+ <PreprocessorDefinitions >WIN32_LEAN_AND_MEAN;NOMINMAX;%(PreprocessorDefinitions)</PreprocessorDefinitions >
2324 <PreprocessorDefinitions Condition =" '$(Option-testnet)' == 'true'" >ENABLE_TESTNET;%(PreprocessorDefinitions)</PreprocessorDefinitions >
2425 <PreprocessorDefinitions Condition =" '$(Linkage-libbitcoin)' == 'static' Or '$(Linkage-libbitcoin)' == 'ltcg'" >BC_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions >
2526 </ClCompile >
Original file line number Diff line number Diff line change @@ -230,6 +230,7 @@ SECP256K1_OPTIONS=\
230230# ------------------------------------------------------------------------------
231231BITCOIN_OPTIONS=\
232232" --without-tests " \
233+ " --without-examples " \
233234" ${with_boost} " \
234235" ${with_pkgconfigdir} "
235236
You can’t perform that action at this time.
0 commit comments