From owner-svn-src-head@FreeBSD.ORG Thu Jun 5 18:53:57 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7642F3CD; Thu, 5 Jun 2014 18:53:57 +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 49C032E97; Thu, 5 Jun 2014 18:53:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s55IrvJY023266; Thu, 5 Jun 2014 18:53:57 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s55Irutx023262; Thu, 5 Jun 2014 18:53:56 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201406051853.s55Irutx023262@svn.freebsd.org> From: Ed Maste Date: Thu, 5 Jun 2014 18:53:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267124 - in head: etc/mtree share share/mk tools/build/options X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 18:53:57 -0000 Author: emaste Date: Thu Jun 5 18:53:56 2014 New Revision: 267124 URL: http://svnweb.freebsd.org/changeset/base/267124 Log: Install VT support files They can be disabled by setting WITHOUT_VT_SUPPORT=yes in src.conf. Sponsored by: The FreeBSD Foundation Added: head/tools/build/options/WITHOUT_VT_SUPPORT (contents, props changed) Modified: head/etc/mtree/BSD.usr.dist head/share/Makefile head/share/mk/src.opts.mk Modified: head/etc/mtree/BSD.usr.dist ============================================================================== --- head/etc/mtree/BSD.usr.dist Thu Jun 5 18:38:27 2014 (r267123) +++ head/etc/mtree/BSD.usr.dist Thu Jun 5 18:53:56 2014 (r267124) @@ -1408,6 +1408,12 @@ catalog .. .. + vt + fonts + .. + keymaps + .. + .. zoneinfo Africa .. Modified: head/share/Makefile ============================================================================== --- head/share/Makefile Thu Jun 5 18:38:27 2014 (r267123) +++ head/share/Makefile Thu Jun 5 18:53:56 2014 (r267124) @@ -28,6 +28,7 @@ SUBDIR= ${_colldef} \ termcap \ ${_tests} \ ${_timedef} \ + ${_vt} \ ${_zoneinfo} # NB: keep these sorted by MK_* knobs @@ -85,6 +86,10 @@ _syscons= syscons _tests= tests .endif +.if ${MK_VT_SUPPORT} != "no" +_vt= vt +.endif + .if ${MK_ZONEINFO} != "no" _zoneinfo= zoneinfo .endif Modified: head/share/mk/src.opts.mk ============================================================================== --- head/share/mk/src.opts.mk Thu Jun 5 18:38:27 2014 (r267123) +++ head/share/mk/src.opts.mk Thu Jun 5 18:53:56 2014 (r267124) @@ -148,6 +148,7 @@ __DEFAULT_YES_OPTIONS = \ USB \ UTMPX \ VI \ + VT_SUPPORT \ WIRELESS \ WPA_SUPPLICANT_EAPOL \ ZFS \ Added: head/tools/build/options/WITHOUT_VT_SUPPORT ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/tools/build/options/WITHOUT_VT_SUPPORT Thu Jun 5 18:53:56 2014 (r267124) @@ -0,0 +1,4 @@ +.\" $FreeBSD$ +Set to not build +.Xr vt 4 +support files (fonts).