Just for posterity, I also had to make the above-mentioned changes to the atomic.hpp file (BoostParts/boost/atomic) to get Sigil to compile on Linux Mint 16.
Quote:
Basically, line 197 of src/BoostParts/boost/atomic/atomic.hpp is changed from:
Code:
|| (defined(_XOPEN_UNIX) && (_XOPEN_UNIX+0 > 0) && !defined(__UCLIBC__)) \
to:
Code:
|| (defined(_XOPEN_UNIX) && (_XOPEN_UNIX+0 > 0) && !defined(__UCLIBC__) && !defined(__GLIBC__)) \
|