diff options
author | markm <markm@FreeBSD.org> | 2003-06-13 07:04:02 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-06-13 07:04:02 +0000 |
commit | aafc494847b97917d46fce44c7f5fce27242fe82 (patch) | |
tree | 1de4f9e75145b5952e3d782745a8d16b88850ed5 /bin/ps | |
parent | 6f638a74384903948dbaa4df249d983cc56be75c (diff) | |
download | FreeBSD-src-aafc494847b97917d46fce44c7f5fce27242fe82.zip FreeBSD-src-aafc494847b97917d46fce44c7f5fce27242fe82.tar.gz |
Get this area compiling with the highest WARNS= that it works with.
Obsolete WFORMAT= junk also removed where possible.
OK'ed by: obrien
Tested on: sparc64, alpha, i386
Diffstat (limited to 'bin/ps')
-rw-r--r-- | bin/ps/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile index bcbba9b..ca6d51a 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -3,14 +3,13 @@ PROG= ps SRCS= fmt.c keyword.c nlist.c print.c ps.c +WARNS= 5 # # To support "lazy" ps for non root/wheel users # add -DLAZY_PS to the cflags. This helps # keep ps from being an unnecessary load # on large systems. # -WARNS= 1 -WFORMAT=0 CFLAGS+=-DLAZY_PS DPADD= ${LIBM} ${LIBKVM} LDADD= -lm -lkvm |