Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git] / src / template / linux
blob68da3bb048a66e4f4a759063a9fa58c4fbdcd13c
1 # $PostgreSQL$
3 # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
4 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
6 # If --enable-profiling is specified, we need -DLINUX_PROFILE
7 PLATFORM_PROFILE_FLAGS="-DLINUX_PROFILE"
9 if test "$SUN_STUDIO_CC" = "yes" ; then
10   CC="$CC -Xa"                  # relaxed ISO C mode
11   CFLAGS="-v"                   # -v is like gcc -Wall
12   if test "$enable_debug" != yes; then
13     CFLAGS="$CFLAGS -O"         # any optimization breaks debug
14   fi
16   # Pick the right test-and-set (TAS) code for the Sun compiler.
17   # We would like to use in-line assembler, but the compiler
18   # requires *.il files to be on every compile line, making
19   # the build system too fragile.
20   case $host_cpu in
21     sparc)
22         need_tas=yes
23         tas_file=sunstudio_sparc.s
24     ;;
25     i?86|x86_64)
26         need_tas=yes
27         tas_file=sunstudio_x86.s
28     ;;
29   esac