Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Mar 2016 22:37:21 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r296400 - head/share/mk
Message-ID:  <201603042237.u24MbLu1052931@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Fri Mar  4 22:37:21 2016
New Revision: 296400
URL: https://svnweb.freebsd.org/changeset/base/296400

Log:
  DIRDEPS_BUILD: For bootstrapping always install all headers.
  
  There is no good way to guess if any of these will be needed but
  they commonly are and add no extra overhead so just stage them.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/local.dirdeps.mk

Modified: head/share/mk/local.dirdeps.mk
==============================================================================
--- head/share/mk/local.dirdeps.mk	Fri Mar  4 22:37:16 2016	(r296399)
+++ head/share/mk/local.dirdeps.mk	Fri Mar  4 22:37:21 2016	(r296400)
@@ -104,11 +104,20 @@ C_DIRDEPS= \
 	gnu/lib/csu \
 	gnu/lib/libgcc \
 	include \
+	include/arpa \
+	include/protocols \
+	include/rpc  \
+	include/rpcsvc \
 	include/xlocale \
 	lib/${CSU_DIR} \
 	lib/libc \
 	lib/libcompiler_rt \
 
+
+.if ${MK_GSSAPI} != "no"
+C_DIRDEPS+=  include/gssapi
+.endif
+
 .if !empty(SRCS:M*.c)
 DIRDEPS+= ${C_DIRDEPS}
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603042237.u24MbLu1052931>