mirror of
https://github.com/postgres/postgres.git
synced 2025-12-12 02:37:31 +03:00
Makefile.port, since they are of no use to configure and much of the library magic happens in Makefile.port anyway. Use __alpha, not __alpha__, since the former is universally available. Remove -DNOFIXADE from the compile command line and put it in the port include file.
7 lines
121 B
Plaintext
7 lines
121 B
Plaintext
if test "$GCC" = yes ; then
|
|
CFLAGS=
|
|
else
|
|
CC="$CC -Xa" # relaxed ISO C mode
|
|
CFLAGS=-v # -v is like gcc -Wall
|
|
fi
|