From owner-svn-src-stable-9@FreeBSD.ORG Tue Nov 25 17:08:16 2014 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DA09B4B; Tue, 25 Nov 2014 17:08:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 5990C8B5; Tue, 25 Nov 2014 17:08:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAPH8G0R067971; Tue, 25 Nov 2014 17:08:16 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAPH8Fi4067969; Tue, 25 Nov 2014 17:08:15 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201411251708.sAPH8Fi4067969@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dteske set sender to dteske@FreeBSD.org using -f From: Devin Teske Date: Tue, 25 Nov 2014 17:08:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r275056 - in stable/9: lib usr.bin X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2014 17:08:16 -0000 Author: dteske Date: Tue Nov 25 17:08:15 2014 New Revision: 275056 URL: https://svnweb.freebsd.org/changeset/base/275056 Log: Similar to r274192: Enable dpv(1,3): Introduced [disabled] via r275047. This is a direct commit to stable/9 because stable/10 and above use a better dependency calculation routine (versus simple ordering). Thanks to: ngie, ian, jelischer, shurd, bapt Modified: stable/9/lib/Makefile stable/9/usr.bin/Makefile Modified: stable/9/lib/Makefile ============================================================================== --- stable/9/lib/Makefile Tue Nov 25 17:07:56 2014 (r275055) +++ stable/9/lib/Makefile Tue Nov 25 17:08:15 2014 (r275056) @@ -22,6 +22,7 @@ # libsbuf must be built before libcam. # libtacplus must be built before libpam. # libutil must be built before libpam. +# libfigpar must be built before libdpv (but after ncurses and libutil). # libypclnt must be built before libpam. # libgssapi must be built before librpcsec_gss # @@ -48,6 +49,7 @@ SUBDIR_ORDERED= ${_csu} \ libsbuf \ libtacplus \ libutil \ + libfigpar \ ${_libypclnt} \ ${_libcxxrt} \ ${_libcplusplus} @@ -67,12 +69,12 @@ SUBDIR= ${SUBDIR_ORDERED} \ libdevinfo \ libdevstat \ libdisk \ + libdpv \ libdwarf \ libedit \ ${_libefi} \ libexpat \ libfetch \ - libfigpar \ libftpio \ libgeom \ ${_libgpib} \ Modified: stable/9/usr.bin/Makefile ============================================================================== --- stable/9/usr.bin/Makefile Tue Nov 25 17:07:56 2014 (r275055) +++ stable/9/usr.bin/Makefile Tue Nov 25 17:08:15 2014 (r275056) @@ -36,6 +36,7 @@ SUBDIR= alias \ ctlstat \ cut \ dirname \ + dpv \ du \ ee \ elf2aout \