This is a known issue and is fixed upstream.<br />
<br />
From <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=702090">https://bugzilla.mozilla.org/show_bug.cgi?id=702090</a> [<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=702090" target="_blank">^</a>]<br />
<br />
==============================================================<br />
The file has this construct:<br />
<br />
#if __GNUC__ > 3<br />
...<br />
#if (__GNUC__ == 4) && (__GNUC_MINOR < 5)<br />
...<br />
#else<br />
<br />
which is clearly incorrect. It assumes __GNUC__ is defined, i.e. GCC, and __GNUC_MINOR is a typo.<br />
<br />
==============================================================
↧