Date: Tue, 16 Apr 2013 19:28:01 +0000 (UTC) From: Brooks Davis <brooks@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: r249561 - in stable/9/usr.bin: unvis vis Message-ID: <201304161928.r3GJS1db075181@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brooks Date: Tue Apr 16 19:28:00 2013 New Revision: 249561 URL: http://svnweb.freebsd.org/changeset/base/249561 Log: MFC r248303: Replace our (un)vis(1) commands with implementations from NetBSD to match our import of the (un)vis(3) APIs. This adds support for multibyte encoding and the -h and -m flags which support HTTP and MIME encoding respectively. PR: bin/175418 Obtained from: NetBSD Added: - copied from r249557, head/contrib/unvis/ - copied from r249557, head/contrib/vis/ Directory Properties: stable/9/contrib/unvis/ (props changed) stable/9/contrib/vis/ (props changed) Deleted: stable/9/usr.bin/unvis/unvis.1 stable/9/usr.bin/unvis/unvis.c stable/9/usr.bin/vis/extern.h stable/9/usr.bin/vis/foldit.c stable/9/usr.bin/vis/vis.1 stable/9/usr.bin/vis/vis.c Modified: stable/9/usr.bin/unvis/Makefile stable/9/usr.bin/vis/Makefile Directory Properties: stable/9/usr.bin/unvis/ (props changed) stable/9/usr.bin/vis/ (props changed) Modified: stable/9/usr.bin/unvis/Makefile ============================================================================== --- stable/9/usr.bin/unvis/Makefile Tue Apr 16 19:27:09 2013 (r249560) +++ stable/9/usr.bin/unvis/Makefile Tue Apr 16 19:28:00 2013 (r249561) @@ -3,4 +3,6 @@ PROG= unvis +.PATH: ${.CURDIR}/../../contrib/unvis + .include <bsd.prog.mk> Modified: stable/9/usr.bin/vis/Makefile ============================================================================== --- stable/9/usr.bin/vis/Makefile Tue Apr 16 19:27:09 2013 (r249560) +++ stable/9/usr.bin/vis/Makefile Tue Apr 16 19:28:00 2013 (r249561) @@ -1,6 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $FreeBSD$ PROG= vis SRCS= vis.c foldit.c +.PATH: ${.CURDIR}/../../contrib/vis +CFLAGS+= -I${.CURDIR}/../../contrib/vis + .include <bsd.prog.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304161928.r3GJS1db075181>