Date: Mon, 27 Mar 2017 18:28:15 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r316045 - stable/11/tools/build/mk Message-ID: <201703271828.v2RISFf8019118@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Mon Mar 27 18:28:15 2017 New Revision: 316045 URL: https://svnweb.freebsd.org/changeset/base/316045 Log: MFC r314245: 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 Relnotes: yes (this might break someone's system if have the knob set) Modified: stable/11/tools/build/mk/OptionalObsoleteFiles.inc Directory Properties: stable/11/ (props changed) Modified: stable/11/tools/build/mk/OptionalObsoleteFiles.inc ============================================================================== --- stable/11/tools/build/mk/OptionalObsoleteFiles.inc Mon Mar 27 18:26:22 2017 (r316044) +++ stable/11/tools/build/mk/OptionalObsoleteFiles.inc Mon Mar 27 18:28:15 2017 (r316045) @@ -4667,9 +4667,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?201703271828.v2RISFf8019118>