Date: Tue, 25 Nov 2014 15:49:51 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r275047 - in stable/9: lib lib/libdpv lib/libfigpar share/mk sys/sys Message-ID: <201411251549.sAPFnpeG029219@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dteske Date: Tue Nov 25 15:49:51 2014 New Revision: 275047 URL: https://svnweb.freebsd.org/changeset/base/275047 Log: MFC r274116: Add new libraries/utilities for data throughput visualization. dpv(3): dialog progress view library dpv(1): stream data from stdin or multiple paths with dialog progress view figpar(3): configuration file parsing library MFC r274124: Temporarily _disable_ compilation of dpv(1,3) NB: MFC broken into two halves (first half to bring in the new dirs so mergeinfo can be properly recorded on them -- the second half of MFC). Reviews: D714 Relnotes: New libdpv/libfigpar and dpv(1) utility Reviewed by: jelischer, shurd Discussed at: MeetBSD California 2014 Vendor/Dev Summit Discussed on: -current Thanks to: ngie, ian, jelischer, shurd, bapt Added: stable/9/lib/libdpv/ - copied from r274116, head/lib/libdpv/ stable/9/lib/libfigpar/ - copied from r274116, head/lib/libfigpar/ - copied from r274116, head/usr.bin/dpv/ Directory Properties: stable/9/usr.bin/dpv/ (props changed) Modified: stable/9/lib/Makefile (contents, props changed) stable/9/share/mk/bsd.libnames.mk stable/9/sys/sys/param.h Directory Properties: 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/lib/Makefile ============================================================================== --- stable/9/lib/Makefile Tue Nov 25 15:24:05 2014 (r275046) +++ stable/9/lib/Makefile Tue Nov 25 15:49:51 2014 (r275047) @@ -72,6 +72,7 @@ SUBDIR= ${SUBDIR_ORDERED} \ ${_libefi} \ libexpat \ libfetch \ + libfigpar \ libftpio \ libgeom \ ${_libgpib} \ Modified: stable/9/share/mk/bsd.libnames.mk ============================================================================== --- stable/9/share/mk/bsd.libnames.mk Tue Nov 25 15:24:05 2014 (r275046) +++ stable/9/share/mk/bsd.libnames.mk Tue Nov 25 15:49:51 2014 (r275047) @@ -45,11 +45,13 @@ 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 15:24:05 2014 (r275046) +++ stable/9/sys/sys/param.h Tue Nov 25 15:49:51 2014 (r275047) @@ -58,7 +58,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 903506 /* Master, propagated to newvers */ +#define __FreeBSD_version 903507 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411251549.sAPFnpeG029219>