[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 10/10] build: unlzw.c: avoid warnings about unused macros
From: |
Jim Meyering |
Subject: |
[PATCH 10/10] build: unlzw.c: avoid warnings about unused macros |
Date: |
Fri, 20 Nov 2009 21:06:21 +0100 |
From: Jim Meyering <address@hidden>
* configure.ac: Turn off -Wunused-macros.
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index d87c5f3..6442ab6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -90,6 +90,7 @@ if test "$gl_gcc_warnings" = yes; then
# initial problems in gzip
nw="$nw -Wold-style-definition"
nw="$nw -Wshadow"
+ nw="$nw -Wunused-macros"
# ?? -Wstrict-overflow
gl_MANYWARN_ALL_GCC([ws])
@@ -120,7 +121,6 @@ if test "$gl_gcc_warnings" = yes; then
# Remove the following and save the result in GNULIB_WARN_CFLAGS.
nw=
nw="$nw -Wuninitialized"
- nw="$nw -Wunused-macros"
nw="$nw -Wmissing-prototypes"
nw="$nw -Wold-style-definition"
gl_MANYWARN_COMPLEMENT([GNULIB_WARN_CFLAGS], [$WARN_CFLAGS], [$nw])
--
1.6.5.3.433.g11067
- [PATCH 01/10] build: "make stable" emitted an invalid gnupload command, Jim Meyering, 2009/11/20
- [PATCH 09/10] build: avoid warnings about unused macros, Jim Meyering, 2009/11/20
- [PATCH 02/10] maint: cfg.mk: remove factored-out ftp host/dir definitions, Jim Meyering, 2009/11/20
- [PATCH 08/10] build: util.c: avoid warnings about add_envopt, Jim Meyering, 2009/11/20
- [PATCH 05/10] build: use gnulib's fdopendir module, Jim Meyering, 2009/11/20
- [PATCH 03/10] maint: tweak formatting of bootstrap.conf, Jim Meyering, 2009/11/20
- [PATCH 04/10] build: enable many warnings, Jim Meyering, 2009/11/20
- [PATCH 06/10] build: avoid warnings from -Wstrict-prototypes, Jim Meyering, 2009/11/20
- [PATCH 07/10] build: avoid many const-related warnings, Jim Meyering, 2009/11/20
- [PATCH 10/10] build: unlzw.c: avoid warnings about unused macros,
Jim Meyering <=