wisk / medusa

An open source interactive disassembler
Other
1.04k stars 92 forks source link

Boost 1.59 incompatibility #42

Closed durandj closed 8 years ago

durandj commented 8 years ago

The documentation currently says that any version of Boost greater than or equal to 1.55 should work but when trying to compile against 1.59 you get compile errors about missing BOOST_MESSAGE. Switching to 1.55 fixes this. May need to update the documentation to mention that 1.59 is not compatible.

wisk commented 8 years ago

Hi durandj,

Sorry for the late and thank you for reporting this issue, I wasn't aware that BOOST_MESSAGE was deprecated. Replacing BOOST_MESSAGE to BOOST_TEXT_MESSAGE (https://github.com/wisk/medusa/commit/84e927a61eb6a3017c2aeede6b5826c7ce03460f) should fix this problem.

Please, tell me if it's ok now. :)

durandj commented 8 years ago

Seems all good! Thanks :)