From owner-svn-src-user@freebsd.org Sat Oct 17 22:41:31 2015 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E607CA18356 for ; Sat, 17 Oct 2015 22:41:31 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6E66121B; Sat, 17 Oct 2015 22:41:31 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9HMfUUh014098; Sat, 17 Oct 2015 22:41:30 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9HMfUne014095; Sat, 17 Oct 2015 22:41:30 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510172241.t9HMfUne014095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sat, 17 Oct 2015 22:41:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r289475 - in user/ngie/bug203673/usr.bin: netstat procstat w X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Oct 2015 22:41:32 -0000 Author: ngie Date: Sat Oct 17 22:41:30 2015 New Revision: 289475 URL: https://svnweb.freebsd.org/changeset/base/289475 Log: usr.bin/{netstat,procstat,w} need libutil for other symbols Modified: user/ngie/bug203673/usr.bin/netstat/Makefile user/ngie/bug203673/usr.bin/procstat/Makefile user/ngie/bug203673/usr.bin/w/Makefile Modified: user/ngie/bug203673/usr.bin/netstat/Makefile ============================================================================== --- user/ngie/bug203673/usr.bin/netstat/Makefile Sat Oct 17 22:36:07 2015 (r289474) +++ user/ngie/bug203673/usr.bin/netstat/Makefile Sat Oct 17 22:41:30 2015 (r289475) @@ -56,7 +56,7 @@ CFLAGS+=-DPF BINGRP= kmem BINMODE=2555 -LIBADD= kvm memstat xo +LIBADD= kvm memstat util xo .if ${MK_NETGRAPH_SUPPORT} != "no" SRCS+= netgraph.c Modified: user/ngie/bug203673/usr.bin/procstat/Makefile ============================================================================== --- user/ngie/bug203673/usr.bin/procstat/Makefile Sat Oct 17 22:36:07 2015 (r289474) +++ user/ngie/bug203673/usr.bin/procstat/Makefile Sat Oct 17 22:41:30 2015 (r289475) @@ -17,6 +17,6 @@ SRCS= procstat.c \ procstat_threads.c \ procstat_vm.c -LIBADD+= procstat xo sbuf +LIBADD+= procstat util xo sbuf .include Modified: user/ngie/bug203673/usr.bin/w/Makefile ============================================================================== --- user/ngie/bug203673/usr.bin/w/Makefile Sat Oct 17 22:36:07 2015 (r289474) +++ user/ngie/bug203673/usr.bin/w/Makefile Sat Oct 17 22:41:30 2015 (r289475) @@ -4,7 +4,7 @@ PROG= w SRCS= fmt.c pr_time.c proc_compare.c w.c MAN= w.1 uptime.1 -LIBADD= kvm sbuf xo +LIBADD= kvm sbuf util xo LINKS= ${BINDIR}/w ${BINDIR}/uptime .PATH: ${.CURDIR}/../../bin/ps