]> granicus.if.org Git - postgresql/commitdiff
Remove -Winline from the default set of CFLAGS for gcc. It's gotten much
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 19 Aug 2008 19:17:40 +0000 (19:17 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 19 Aug 2008 19:17:40 +0000 (19:17 +0000)
too noisy to be useful as of gcc 4.3, and we were never really doing
anything about inlining warnings anyway.

configure
configure.in

index f6815d3b1ce5d68d432d53044710a636847a65d9..cde00667b38263242d89bc809cecee00409445f6 100755 (executable)
--- a/configure
+++ b/configure
@@ -3601,7 +3601,7 @@ fi
 # ICC pretends to be GCC but it's lying; it doesn't support these options.
 
 if test "$GCC" = yes -a "$ICC" = no; then
-  CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wpointer-arith -Winline"
+  CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wpointer-arith"
   # These work in some but not all gcc versions
   { echo "$as_me:$LINENO: checking if $CC supports -Wdeclaration-after-statement" >&5
 echo $ECHO_N "checking if $CC supports -Wdeclaration-after-statement... $ECHO_C" >&6; }
index 2c73e03db4600b1921908ecba932763dfa3f9c3d..6cde15e30cc869c0aa1500087871afb98127e85c 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-dnl $PostgreSQL: pgsql/configure.in,v 1.563 2008/06/27 00:36:16 tgl Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.564 2008/08/19 19:17:40 tgl Exp $
 dnl
 dnl Developers, please strive to achieve this order:
 dnl
@@ -391,7 +391,7 @@ fi
 # ICC pretends to be GCC but it's lying; it doesn't support these options.
 
 if test "$GCC" = yes -a "$ICC" = no; then
-  CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wpointer-arith -Winline"
+  CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wpointer-arith"
   # These work in some but not all gcc versions
   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])