macosx darwin replaced -traditional-cpp with -no-cpp-precomp - Mailing list pgsql-ports

From Richard Müller
Subject macosx darwin replaced -traditional-cpp with -no-cpp-precomp
Date
Msg-id 7A1E5BF9-0684-11D8-9C75-000A959B4514@aon.at
Whole thread Raw
Responses Re: macosx darwin replaced -traditional-cpp with -no-cpp-precomp  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-ports
Environment:
postgresql-7.3.4.tar.gz
Darwin Kernel Version 6.8
MacOSX 10.2.8
gcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1493)

With the original precompiler flag (-traditional-cpp)
spaces preceeding precompiler directives ('#') are not accepted.
error messages like:
    syntax error at '#' token
in standard include files (e.g. math.h)

Example:
cpptest.c:
#define OK
     #define NOTOK
int main()
{
   printf("hallo world\n");
}
 > gcc -traditional-cpp cpptest.c
produces the error output:
cpptest.c:2: error: syntax error at '#' token
cpptest.c:2: error: parse error before "NOTOK"


I replaced
CC="$CC -traditional-cpp"
    with
CC="$CC -no-cpp-precomp"
    in
src/template/darwin

and make worked.

Regards,
Richard Mueller


pgsql-ports by date:

Previous
From: Fernando Nasser
Date:
Subject: Re: [GENERAL]
Next
From: Bruce Momjian
Date:
Subject: Re: macosx darwin replaced -traditional-cpp with -no-cpp-precomp