diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-17 00:31:31 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-17 00:31:31 +0000 |
commit | 5880638c671bd1aa2e12f994e233b749bda28cb4 (patch) | |
tree | af76b46059852e521e6e528a0dfb627800e5a390 /fixincludes | |
parent | a6080f4b459c73aec2d25ae0a440c02163853e25 (diff) | |
download | gcc-5880638c671bd1aa2e12f994e233b749bda28cb4.tar.gz |
* configure.ac: Add -Wno-overlength-strings.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113836 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes')
-rw-r--r-- | fixincludes/ChangeLog | 5 | ||||
-rwxr-xr-x | fixincludes/configure | 2 | ||||
-rw-r--r-- | fixincludes/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog index f4231c0c71c..e4e0bd68b71 100644 --- a/fixincludes/ChangeLog +++ b/fixincludes/ChangeLog @@ -1,3 +1,8 @@ +2006-05-16 Mike Stump <mrs@apple.com> + + * configure.ac: Add -Wno-overlength-strings. + * configure: Regenerate. + 2006-05-14 Bernhard Fischer <aldot@gcc.gnu.org> * README: Fix typo. diff --git a/fixincludes/configure b/fixincludes/configure index 73ba870cb55..418b785fa8b 100755 --- a/fixincludes/configure +++ b/fixincludes/configure @@ -2361,7 +2361,7 @@ WARN_CFLAGS= save_CFLAGS="$CFLAGS" for option in -W -Wall -Wwrite-strings -Wstrict-prototypes \ -Wmissing-prototypes -Wold-style-definition \ - -Wmissing-format-attribute; do + -Wmissing-format-attribute -Wno-overlength-strings; do as_acx_Woption=`echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh` echo "$as_me:$LINENO: checking whether $CC supports $option" >&5 diff --git a/fixincludes/configure.ac b/fixincludes/configure.ac index cc667ebb6ed..a24061ccab3 100644 --- a/fixincludes/configure.ac +++ b/fixincludes/configure.ac @@ -11,7 +11,7 @@ AC_PROG_CC ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wwrite-strings -Wstrict-prototypes \ -Wmissing-prototypes -Wold-style-definition \ - -Wmissing-format-attribute]) + -Wmissing-format-attribute -Wno-overlength-strings]) ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long]) # Only enable with --enable-werror-always until existing warnings are |