svn commit: r267124 - in head: etc/mtree share share/mk tools/build/options

Ed Maste emaste at FreeBSD.org
Thu Jun 5 18:53:57 UTC 2014


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).


More information about the svn-src-head mailing list