]> granicus.if.org Git - postgresql/commitdiff
Add to CPPFLAGS/CFLAGS in template files, don't over-ride them.
authorBruce Momjian <bruce@momjian.us>
Sat, 27 Nov 2004 05:03:26 +0000 (05:03 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 27 Nov 2004 05:03:26 +0000 (05:03 +0000)
src/template/aix
src/template/freebsd
src/template/hpux
src/template/linux
src/template/osf
src/template/solaris
src/template/univel
src/template/unixware

index 48f1110f3e8a59d9ec2f8fd8a669a81ff54130b9..96641125bb49ff5f4884020d477a93ff34ffbda7 100644 (file)
@@ -1,10 +1,10 @@
 if test "$GCC" != yes ; then
   case $host_os in
     aix3.2.5 | aix4.1*)
-      CFLAGS="-O -qmaxmem=16384 -qsrcmsg"
+      CFLAGS="$CFLAGS -O -qmaxmem=16384 -qsrcmsg"
       ;;
     *)
-      CFLAGS="-O2 -qmaxmem=16384 -qsrcmsg -qlonglong"
+      CFLAGS="$CFLAGS -O2 -qmaxmem=16384 -qsrcmsg -qlonglong"
       ;;
   esac
 fi
index 718359e07c66d9f450745d9fb505ed4544c8f90e..48fc9dfa34c5c1009e3fd4cc10add441a46fbaa0 100644 (file)
@@ -1,3 +1,3 @@
 case $host_cpu in
-  alpha*)   CFLAGS="-O";;  # alpha has problems with -O2
+  alpha*)   CFLAGS="$CFLAGS -O";;  # alpha has problems with -O2
 esac
index 775c55a935361b4a5745b5b77d32490877683942..f8b6197f80c1e01fd314b14f1a52de9a51c9bab6 100644 (file)
@@ -1,8 +1,8 @@
-CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
+CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
 
 if test "$GCC" != yes ; then
   CC="$CC -Ae"
-  CFLAGS="+O2"
+  CFLAGS="$CFLAGS +O2"
 fi
 
 # Pick right test-and-set (TAS) code.  We need out-of-line assembler
index dfb391ea54279f8476b82cf907a7f19d845fc0d6..ecb7ba4baba6e709f1c797ac7eb1c6751ecfdde5 100644 (file)
@@ -1,2 +1,2 @@
 # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
-CPPFLAGS="-D_GNU_SOURCE"
+CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
index e845cfecea8dd668a39177a0811f4491ff8e1886..fbe4ab03ebeb64152e3459b8ed1190e7f35e402a 100644 (file)
@@ -1,4 +1,4 @@
 if test "$GCC" != yes ; then
   CC="$CC -std"
-  CFLAGS="-O -ieee"
+  CFLAGS="$CFLAGS -O -ieee"
 fi
index 4b6d9cdb5863d59150251efd5041583634674c10..93f3cd730dad25cc9de467cf9caf9cfd18c5406f 100644 (file)
@@ -1,6 +1,6 @@
 if test "$GCC" != yes ; then
   CC="$CC -Xa"                 # relaxed ISO C mode
-  CFLAGS="-O -v"               # -v is like gcc -Wall
+  CFLAGS="$CFLAGS -O -v"               # -v is like gcc -Wall
 fi
 
 # Pick right test-and-set (TAS) code.  We need out-of-line assembler
index 30980fee0a5981987f46d85daa90eba982a23da9..12d11496735c568166808636f37d3b6ab1500bd0 100644 (file)
@@ -1,2 +1,2 @@
-CFLAGS="-v -O -K i486,host,inline,loop_unroll -Dsvr4"
+CFLAGS="$CFLAGS -v -O -K i486,host,inline,loop_unroll -Dsvr4"
 LIBS="-lc89"
index 499eb9c3497da265654a937af97bd5bfd5cba262..a4125af2d9a3d5df1c8bba4de6dea3b5c7302f93 100644 (file)
@@ -13,9 +13,9 @@ void g(void){
 __EOF__
 
   if $CC -c -O -Kinline conftest.c >conftest.err 2>&1; then
-    CFLAGS="-O -Kinline"
+    CFLAGS="$CFLAGS -O -Kinline"
   else
-    CFLAGS="-O -Kinline,no_host"
+    CFLAGS="$CFLAGS -O -Kinline,no_host"
   fi
   rm -f conftest.*