From owner-svn-src-head@FreeBSD.ORG Thu Dec 5 22:56:38 2013 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 379619C1; Thu, 5 Dec 2013 22:56:38 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23FE31295; Thu, 5 Dec 2013 22:56:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5Mucvm063903; Thu, 5 Dec 2013 22:56:38 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB5MubFq063891; Thu, 5 Dec 2013 22:56:37 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201312052256.rB5MubFq063891@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 5 Dec 2013 22:56:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r259018 - in head: etc/mtree include 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.17 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 Dec 2013 22:56:38 -0000 Author: ray Date: Thu Dec 5 22:56:37 2013 New Revision: 259018 URL: http://svnweb.freebsd.org/changeset/base/259018 Log: Install teken.h for userland. Part of VT(9) project merge. Reviewed by: nwhitehorn MFC_to_10_after: re approval Sponsored by: The FreeBSD Foundation Modified: head/etc/mtree/BSD.include.dist head/include/Makefile Directory Properties: head/etc/ (props changed) head/include/ (props changed) Modified: head/etc/mtree/BSD.include.dist ============================================================================== --- head/etc/mtree/BSD.include.dist Thu Dec 5 22:53:32 2013 (r259017) +++ head/etc/mtree/BSD.include.dist Thu Dec 5 22:56:37 2013 (r259018) @@ -329,6 +329,8 @@ .. sys .. + teken + .. ufs ffs .. Modified: head/include/Makefile ============================================================================== --- head/include/Makefile Thu Dec 5 22:53:32 2013 (r259017) +++ head/include/Makefile Thu Dec 5 22:56:37 2013 (r259018) @@ -225,6 +225,9 @@ copies: cd ${.CURDIR}/../sys/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ ${DESTDIR}${INCLUDEDIR}/rpc + cd ${.CURDIR}/../sys/teken; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 teken.h \ + ${DESTDIR}${INCLUDEDIR}/teken symlinks: @${ECHO} "Setting up symlinks to kernel source tree..."