From owner-svn-src-all@FreeBSD.ORG Tue Nov 25 22:16:45 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5381DE3D; Tue, 25 Nov 2014 22:16:45 +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 34D00F51; Tue, 25 Nov 2014 22:16:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAPMGjGA018171; Tue, 25 Nov 2014 22:16:45 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAPMGh8g018165; Tue, 25 Nov 2014 22:16:43 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201411252216.sAPMGh8g018165@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 22:16:43 +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: r275081 - in stable/9: . gnu/lib/libdialog lib lib/libdpv lib/libfigpar share/mk sys/sys usr.bin usr.bin/dpv X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2014 22:16:45 -0000 Author: dteske Date: Tue Nov 25 22:16:43 2014 New Revision: 275081 URL: https://svnweb.freebsd.org/changeset/base/275081 Log: Revert revisions 275047, 275051, and 275056. Oops, dpv(1,3) requires dialog-1.2-20130923 or higher (which I introduced to HEAD via r255852 prior to the creation of the stable/10 branch; however it never got merged to stable/9 so we can't have dpv in stable/9). Brief summary of reverted revisions: r275047: Add dpv(1,3)/figpar(3) r275051: Fixes r275056: Enable compilation of dpv(1,3) Pointy-hat: me Deleted: stable/9/lib/libdpv/ stable/9/lib/libfigpar/ stable/9/usr.bin/dpv/ Modified: stable/9/Makefile.inc1 (contents, props changed) stable/9/gnu/lib/libdialog/Makefile stable/9/lib/Makefile (contents, props changed) stable/9/share/mk/bsd.libnames.mk stable/9/sys/sys/param.h stable/9/usr.bin/Makefile Directory Properties: stable/9/ (props changed) stable/9/gnu/lib/libdialog/ (props changed) stable/9/lib/ (props changed) stable/9/share/mk/ (props changed) stable/9/sys/sys/ (props changed) stable/9/usr.bin/ (props changed) Modified: stable/9/Makefile.inc1 ============================================================================== --- stable/9/Makefile.inc1 Tue Nov 25 22:10:31 2014 (r275080) +++ stable/9/Makefile.inc1 Tue Nov 25 22:16:43 2014 (r275081) @@ -1353,7 +1353,6 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_kerberos5_lib_libroken} \ lib/libbz2 lib/libcom_err lib/libcrypt \ lib/libelf lib/libexpat \ - lib/libfigpar \ ${_lib_libgssapi} ${_lib_libipx} \ lib/libkiconv lib/libkvm lib/liblzma lib/libmd \ lib/ncurses/ncurses lib/ncurses/ncursesw \ @@ -1364,8 +1363,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_cddl_lib_libzfs_core} \ lib/libutil ${_lib_libypclnt} lib/libz lib/msun \ ${_secure_lib_libcrypto} ${_lib_libldns} \ - ${_secure_lib_libssh} ${_secure_lib_libssl} \ - gnu/lib/libdialog + ${_secure_lib_libssh} ${_secure_lib_libssl} .if ${MK_LIBTHR} != "no" _lib_libthr= lib/libthr @@ -1445,8 +1443,6 @@ _lib_libypclnt= lib/libypclnt lib/libradius__L: lib/libmd__L .endif -gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L - .for _lib in ${_prereq_libs} ${_lib}__PL: .PHONY .if exists(${.CURDIR}/${_lib}) Modified: stable/9/gnu/lib/libdialog/Makefile ============================================================================== --- stable/9/gnu/lib/libdialog/Makefile Tue Nov 25 22:10:31 2014 (r275080) +++ stable/9/gnu/lib/libdialog/Makefile Tue Nov 25 22:16:43 2014 (r275081) @@ -13,9 +13,6 @@ SRCS= argv.c arrows.c buttons.c calenda INCS= dialog.h dlg_colors.h dlg_config.h dlg_keys.h MAN= dialog.3 -DPADD= ${LIBNCURSESW} ${LIBM} -LDADD= -lncursesw -lm - CFLAGS+= -I${.CURDIR} -I${DIALOG} -D_XOPEN_SOURCE_EXTENDED .PATH: ${DIALOG} WARNS?= 1 Modified: stable/9/lib/Makefile ============================================================================== --- stable/9/lib/Makefile Tue Nov 25 22:10:31 2014 (r275080) +++ stable/9/lib/Makefile Tue Nov 25 22:16:43 2014 (r275081) @@ -22,7 +22,6 @@ # 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 # @@ -49,7 +48,6 @@ SUBDIR_ORDERED= ${_csu} \ libsbuf \ libtacplus \ libutil \ - libfigpar \ ${_libypclnt} \ ${_libcxxrt} \ ${_libcplusplus} @@ -69,7 +67,6 @@ SUBDIR= ${SUBDIR_ORDERED} \ libdevinfo \ libdevstat \ libdisk \ - libdpv \ libdwarf \ libedit \ ${_libefi} \ Modified: stable/9/share/mk/bsd.libnames.mk ============================================================================== --- stable/9/share/mk/bsd.libnames.mk Tue Nov 25 22:10:31 2014 (r275080) +++ stable/9/share/mk/bsd.libnames.mk Tue Nov 25 22:16:43 2014 (r275081) @@ -45,13 +45,11 @@ LIBDEVSTAT?= ${DESTDIR}${LIBDIR}/libdevs LIBDIALOG?= ${DESTDIR}${LIBDIR}/libdialog.a LIBDISK?= ${DESTDIR}${LIBDIR}/libdisk.a LIBDNS?= ${DESTDIR}${LIBDIR}/libdns.a -LIBDPV?= ${DESTDIR}${LIBDIR}/libdpv.a LIBDTRACE?= ${DESTDIR}${LIBDIR}/libdtrace.a LIBDWARF?= ${DESTDIR}${LIBDIR}/libdwarf.a LIBEDIT?= ${DESTDIR}${LIBDIR}/libedit.a LIBELF?= ${DESTDIR}${LIBDIR}/libelf.a LIBFETCH?= ${DESTDIR}${LIBDIR}/libfetch.a -LIBFIGPAR?= ${DESTDIR}${LIBDIR}/libfigpar.a LIBFL?= "don't use LIBFL, use LIBL" LIBFORM?= ${DESTDIR}${LIBDIR}/libform.a LIBFTPIO?= ${DESTDIR}${LIBDIR}/libftpio.a Modified: stable/9/sys/sys/param.h ============================================================================== --- stable/9/sys/sys/param.h Tue Nov 25 22:10:31 2014 (r275080) +++ stable/9/sys/sys/param.h Tue Nov 25 22:16:43 2014 (r275081) @@ -58,7 +58,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 903507 /* Master, propagated to newvers */ +#define __FreeBSD_version 903506 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD, Modified: stable/9/usr.bin/Makefile ============================================================================== --- stable/9/usr.bin/Makefile Tue Nov 25 22:10:31 2014 (r275080) +++ stable/9/usr.bin/Makefile Tue Nov 25 22:16:43 2014 (r275081) @@ -36,7 +36,6 @@ SUBDIR= alias \ ctlstat \ cut \ dirname \ - dpv \ du \ ee \ elf2aout \