summaryrefslogtreecommitdiff
path: root/bfd/configure
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2010-04-07 07:19:00 +0000
committerAlan Modra <amodra@bigpond.net.au>2010-04-07 07:19:00 +0000
commitefe95bc91df29b92dbebc317fe52308f9fb87fd3 (patch)
treeb2399c5b28978c3cfc8066b22e6ed69b1ca140f7 /bfd/configure
parent8f8911f2cb35b2b794bbdf0902d75e6e9bbe6874 (diff)
downloadgdb-efe95bc91df29b92dbebc317fe52308f9fb87fd3.tar.gz
* warning.m4 (GCC_WARN_CFLAGS): Only add -Wshadow for gcc-4 and above.
* configure: Regenerate.
Diffstat (limited to 'bfd/configure')
-rwxr-xr-xbfd/configure16
1 files changed, 14 insertions, 2 deletions
diff --git a/bfd/configure b/bfd/configure
index 0f73da3c257..f4aba27fea4 100755
--- a/bfd/configure
+++ b/bfd/configure
@@ -12128,7 +12128,19 @@ fi
-GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow"
+GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+__GNUC__
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ $EGREP "^[0-3]$" >/dev/null 2>&1; then :
+
+else
+ GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wshadow"
+fi
+rm -f conftest*
+
# Check whether --enable-werror was given.
if test "${enable_werror+set}" = set; then :
@@ -12140,7 +12152,7 @@ if test "${enable_werror+set}" = set; then :
fi
-# Enable -Wno-format by default when using gcc on mingw
+# Disable -Wformat by default when using gcc on mingw
case "${host}" in
*-*-mingw32*)
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then