Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Feb 2017 03:44:51 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r314245 - head/tools/build/mk
Message-ID:  <201702250344.v1P3ipLv022874@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Feb 25 03:44:51 2017
New Revision: 314245
URL: https://svnweb.freebsd.org/changeset/base/314245

Log:
  Fill MK_LIBTHR as far as lib/libthr is concerned
  
  There are other areas of the tree that will need to be evaluated for sanity
  if they're supposed to be conditionally compiled out of the build/install,
  like libzpool
  
  MFC after:	1 month
  Relnotes:	yes (this might break someone's system if have the knob set)
  Sponsored by:	Dell EMC Isilon

Modified:
  head/tools/build/mk/OptionalObsoleteFiles.inc

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Sat Feb 25 03:35:26 2017	(r314244)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Sat Feb 25 03:44:51 2017	(r314245)
@@ -4809,9 +4809,12 @@ OLD_DIRS+=usr/include/c++/v1/ext
 OLD_DIRS+=usr/include/c++/v1
 .endif
 
-#.if ${MK_LIBTHR} == no
-# to be filled in
-#.endif
+.if ${MK_LIBTHR} == no
+OLD_LIBS+=lib/libthr.so.3
+OLD_FILES+=usr/lib/libthr.a
+OLD_FILES+=usr/lib/libthr_p.a
+OLD_FILES+=usr/share/man/man3/libthr.3.gz
+.endif
 
 .if ${MK_LLD} == no
 OLD_FILES+=usr/bin/ld.lld



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