On 9 Sep 2001, at 14:33, Thomas Dyhr wrote:
> I was trying to do a "make" on PowerPC cube 450mhz runing Mac OS X 10.0.4
> (powerpc-apple-darwin1.3.7) when I received the following error message:
[snip, as we've seen this a few times already!]
In previous messages on this subject, it has been determined that the
culprit is Apple's broken C pre-processor (cpp-precomp).
Considered opinion of this email list offers two different solutions:
1) Change line 435 of html-parse.c to:
assert (ch == '\'' || ch == '\"');
(i.e. add a \ before the ")
2) Use the following command to configure the Makefile:
CPPFLAGS="-no-cpp-precomp" ./configure
The first fix avoids the bug in Apple's C pre-processor. The second
fix avoids Apple's C pre-processor altogether in favor of the GNU
one.