diff options
author | Jim Meyering <meyering@redhat.com> | 2008-11-12 11:11:54 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-12-21 17:49:58 +0100 |
commit | 292d68565a34b237cd2bf586ace545b7cd3dbfcf (patch) | |
tree | cd36b87521ab52d53ac12d930fddb698867727f6 /src | |
parent | c352bb469de0e7275f1266c0963d5429d245d711 (diff) | |
download | coreutils-292d68565a34b237cd2bf586ace545b7cd3dbfcf.tar.xz |
build: add configure-time --enable-gcc-warnings option; avoid warnings
* bootstrap.conf (gnulib_modules): Add "warnings" module.
* configure.ac: Add --enable-gcc-warnings, derived from code in bison.
* src/Makefile.am (AM_CFLAGS): Set to $(WARN_CFLAGS) # $(WERROR_CFLAGS)
* lib/Makefile.am (AM_CFLAGS): Change spelling to $(WARN_CFLAGS)
Don't use $(WERROR_CFLAGS), yet.
* src/system.h (usage): Declare.
* src/base64.c (usage): Declare to be global, for consistency.
* src/timeout.c (usage): Likewise.
* src/truncate.c (usage): Likewise.
* src/getlimits.c (usage): Likewise.
* src/pinky.c (ttyname): Declare with prototype, rather than an
empty argument list.
* src/who.c (ttyname): Likewise.
* src/su.c (crypt, getusershell, setusershell, endusershell): Likewise.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 819b87461..68c5f75f6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -26,7 +26,7 @@ no_install__progs = \ build_if_possible__progs = \ chroot df hostid nice pinky stty su uname uptime users who -AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) +AM_CFLAGS = $(WARN_CFLAGS) # $(WERROR_CFLAGS) EXTRA_PROGRAMS = \ $(no_install__progs) \ |