From owner-svn-src-stable-9@FreeBSD.ORG Tue Apr 16 19:28:01 2013 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]) by hub.freebsd.org (Postfix) with ESMTP id 62805B3E; Tue, 16 Apr 2013 19:28:01 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 54C2C11CC; Tue, 16 Apr 2013 19:28:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3GJS1Xm075190; Tue, 16 Apr 2013 19:28:01 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3GJS1db075181; Tue, 16 Apr 2013 19:28:01 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201304161928.r3GJS1db075181@svn.freebsd.org> From: Brooks Davis Date: Tue, 16 Apr 2013 19:28:01 +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: r249561 - in stable/9/usr.bin: unvis vis 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.14 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, 16 Apr 2013 19:28:01 -0000 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 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