> While trying to "make" on the Mac OS X 10.1 platform, i am getting > html-parse errors (see below):
Gee, where have I heard that before? :-) It's a bug in cpp-precomp, Apple's C pre-processor that implements support for pre-compiled headers. The way to avoid the error is to type the following before executing configure: setenv CPPFLAGS "-no-cpp-precomp" (That's tcsh shell syntax. Adjust accordingly if you're using sh/zsh.) You pretty much want to do that with almost everything you compile on Mac OS X, by the way. Cpp-precomp is really only useful when compiling the Darwin kernel or other extremely large project.
