From owner-cvs-all@FreeBSD.ORG Sat May 3 13:55:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 311A437B401; Sat, 3 May 2003 13:55:06 -0700 (PDT) Received: from thalia.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A0B643F93; Sat, 3 May 2003 13:55:04 -0700 (PDT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-b207.otenet.gr [212.205.244.215]) by thalia.otenet.gr (8.12.9/8.12.9) with ESMTP id h43Kt1mX005416; Sat, 3 May 2003 23:55:02 +0300 (EEST) Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.12.9/8.12.9) with ESMTP id h43Kt0oP004195; Sat, 3 May 2003 23:55:00 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.12.9/8.12.9/Submit) id h43Kt0H5004194; Sat, 3 May 2003 23:55:00 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 3 May 2003 23:55:00 +0300 From: Giorgos Keramidas To: Mark Murray Message-ID: <20030503205500.GB3907@gothmog.gr> References: <200305031639.h43GdYQ4049867@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305031639.h43GdYQ4049867@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ls extern.h ls.c print.c util.c src/bin/pax ar_io.c ar_subs.c cache.c cpio.c extern.h gen_subs.c getoldopt.c options.c pat_rep.c pax.c pax.h src/bin/ps fmt.c src/bin/rcp rcp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 May 2003 20:55:06 -0000 On 2003-05-03 09:39, Mark Murray wrote: > Modified files: > bin/ls extern.h ls.c print.c util.c > [...] > Log: > Fix a bazillion warnings. This makes almost the whole of src/bin/* > WARNS=6, std=c99 clean. Now that you mentioned src/bin/... FWIW, my recent buildworlds break at bin/ps. | ===> bin/ps | cc -O2 -Wall -pipe -DLAZY_PS -Wsystem-headers -Werror -c /usr/src/bin/ps/fmt.c | cc -O2 -Wall -pipe -DLAZY_PS -Wsystem-headers -Werror -c /usr/src/bin/ps/keyword.c | cc -O2 -Wall -pipe -DLAZY_PS -Wsystem-headers -Werror -c /usr/src/bin/ps/nlist.c | cc -O2 -Wall -pipe -DLAZY_PS -Wsystem-headers -Werror -c /usr/src/bin/ps/print.c | cc1: warnings being treated as errors | /usr/src/bin/ps/print.c: In function `started': | /usr/src/bin/ps/print.c:405: warning: `%y' yields only last 2 digits of year | /usr/src/bin/ps/print.c: In function `lstarted': | /usr/src/bin/ps/print.c:422: warning: `%c' yields only last 2 digits of year in some locales on non-BSD systems | *** Error code 1 I locally disabled WARNS for ps(1) until I make sure it's not some local stuff that broke it: Index: bin/ps/Makefile =================================================================== RCS file: /home/ncvs/src/bin/ps/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- bin/ps/Makefile 2 May 2003 01:05:05 -0000 1.23 +++ bin/ps/Makefile 3 May 2003 11:24:16 -0000 @@ -9,7 +9,7 @@ # keep ps from being an unnecessary load # on large systems. # -WARNS= 1 +WARNS= 0 WFORMAT=0 CFLAGS+=-DLAZY_PS DPADD= ${LIBM} ${LIBKVM}