Magic Mailing List |
|
From: Adam Fedor (fedor AT doc DOT com) Date: Tue Sep 30 2003 - 16:44:32 EDT
On Tuesday, September 30, 2003, at 02:36 PM, R. Timothy Edwards wrote: > ----------------------------------------------------------------------- > - > *darwin*) > AC_DEFINE(macosx) > if test "$CPP" == "gcc -E" ; then > CPPFLAGS="$CPPFLAGS -no-cpp-precomp" > fi > ;; > This should be if test "$CPP" == "cc -E"; then cc is the Apple compiler name, gcc doesn't exist on a normal Apple installation and if it did, it would probably indicate that someone compiled their own version of the GNU gcc (which doesn't recognize -no-cpp-precomp)
|
|