<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0696600c - Move the rc framework out of sbin/init into libexec/rc.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#0696600c</link>
        <description>Move the rc framework out of sbin/init into libexec/rc.The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with   every package update because an rc script was touched.   (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement   of the rc framework with alternatives, such as openrc.Discussed with:		brd (during BSDCam), kmooreRequested by:		cem, bzPR:			231522Approved by:		re (gjb)

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Wed, 17 Oct 2018 16:49:11 +0000</pubDate>
        <dc:creator>Bjoern A. Zeeb &lt;bz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e415aa28 - Remove rcmds.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#e415aa28</link>
        <description>Remove rcmds.If they are still needed, you can find them in the net/bsdrcmds port.This was proposed June, 20th and approved by various committers [1].They have been marked as deprecated on CURRENT in r320644 [2] on July, 4th.Both stable/11 and release/11.1 contain the deprecation notice (thanks toallanjude@).Note that ruptime(1)/rwho(1)/rwhod(8) were initially thought to be part ofrcmds but this was a mistake and those are therefore NOT removed.[1] https://lists.freebsd.org/pipermail/freebsd-arch/2017-June/018239.html[2] https://svnweb.freebsd.org/base?view=revision&amp;revision=320644Reviewed by:	bapt, brooksDifferential Revision:	https://reviews.freebsd.org/D12573

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Fri, 06 Oct 2017 08:43:14 +0000</pubDate>
        <dc:creator>Jeremie Le Hen &lt;jlh@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c0759dac - Separate BLACKLIST vs BLACKLIST_SUPPORT properly</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#c0759dac</link>
        <description>Separate BLACKLIST vs BLACKLIST_SUPPORT properlySponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Tue, 07 Jun 2016 16:31:03 +0000</pubDate>
        <dc:creator>Kurt Lidl &lt;lidl@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>95856e14 - Add basic blacklist build support</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#95856e14</link>
        <description>Add basic blacklist build supportReviewed by:	rpauloApproved by:	rpauloRelnotes:	YESSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D5913

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Thu, 02 Jun 2016 19:06:04 +0000</pubDate>
        <dc:creator>Kurt Lidl &lt;lidl@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>df0cfa3b - Reviewed by:	rpaulo</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#df0cfa3b</link>
        <description>Reviewed by:	rpauloApproved by:	rpauloObtained from:	NetBSD external/bsd/blacklist @ 20160409Relnotes:		YESSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D5912

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Wed, 01 Jun 2016 21:48:22 +0000</pubDate>
        <dc:creator>Kurt Lidl &lt;lidl@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c501d73c - Convert casperd(8) daemon to the libcasper.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#c501d73c</link>
        <description>Convert casperd(8) daemon to the libcasper.After calling the cap_init(3) function Casper will fork from it&apos;s originalprocess, using pdfork(2). Forking from a process has a lot of advantages:1. We have the same cwd as the original process.2. The same uid, gid and groups.3. The same MAC labels.4. The same descriptor table.5. The same routing table.6. The same umask.7. The same cpuset(1).From now services are also in form of libraries.We also removed libcapsicum at all and converts existing program using Casperto new architecture.Discussed with:		pjd, jonathan, ed, drysdale@google.com, emastePartially reviewed by:	drysdale@google.com, bdreweryApproved by:		pjd (mentor)Differential Revision:	https://reviews.freebsd.org/D4277

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Thu, 25 Feb 2016 18:23:40 +0000</pubDate>
        <dc:creator>Mariusz Zaborski &lt;oshogbo@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>24e9c818 - Fix installation of makewhatis.local(1) since r283777.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#24e9c818</link>
        <description>Fix installation of makewhatis.local(1) since r283777.The wrapper script has moved to libexec/makewhatis.local since it is notdirectlry related to the older makewhatis(1) utility that has been replacedby the usr.bin/mandoc version.Reported by:	vangyzen

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Thu, 18 Feb 2016 00:26:21 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>855ff27c - Move all the dma(8) components into one single directory</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#855ff27c</link>
        <description>Move all the dma(8) components into one single directorySimplifying maintainance and options (only one place to deal with MK_DMAGENT)This also makes packaging base less intrusive by getting a single point whereto add tags.

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Fri, 09 Oct 2015 22:09:44 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>11981695 - Add the following options to enable/disable several features in the base system</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#11981695</link>
        <description>Add the following options to enable/disable several features in the base systemWITHOUT_BOOTPARAMD - bootparamdWITHOUT_BOOTPD - bootpdWITHOUT_FINGER - finger, fingerdWITHOUT_FTP - ftp, ftpdWITHOUT_INETD - inetdWITHOUT_RBOOTD - rbootdWITHOUT_TCP_WRAPPERS - tcpd, et alWITHOUT_TFTP - tftp, tftp-serverWITHOUT_TIMED - timedMFC after: 2 weeksSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Wed, 04 Feb 2015 10:19:32 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3f802165 - Add MK_TALK knob for building the talk and talkd</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#3f802165</link>
        <description>Add MK_TALK knob for building the talk and talkdMFC after: 2 weeksSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Sun, 25 Jan 2015 04:37:44 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>466046ec - Conditionalize a number of components in the tree</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#466046ec</link>
        <description>Conditionalize a number of components in the tree- bootparamd- bootpd- finger/fingerd- ftp/ftpd- hastctl/hastd- iscsid, et al- rbootd- talk/talkd- tcpd, et al- tftp/tftpdAdd src.conf entries for the various components and do a best effortat adding components to tools/build/mk/OptionalObsoleteFiles.inc

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Wed, 26 Nov 2014 08:44:05 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f8080a99 - HYPERV isn&apos;t available on all architectures, but just on by default</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#f8080a99</link>
        <description>HYPERV isn&apos;t available on all architectures, but just on by defaultfor i386/amd64. Rather, it only works on i386/amd64 and should only bebuilt there. Rather than change the default based on whicharchitecutre, do things more directly by only building it oni386/amd64 and having it always on. This is how we handle otheroptions that are relevant only for a few architectures.

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Thu, 16 Oct 2014 00:33:06 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>478290db - Check in first src/tests snapshot from NetBSD anoncvs</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#478290db</link>
        <description>Check in first src/tests snapshot from NetBSD anoncvsSources were obtained like so:% export CVSROOT=&quot;anoncvs@anoncvs.NetBSD.org:/cvsroot&quot;% cvs -z9 co -D &quot;09/30/2014 20:45&quot; -P src/tests% mv src/tests/* tests/dist/.&apos;*CVS*&apos; has been added to svn:ignore to ease updating periodically fromupstreamSome line ending issues had to be resolved with test outputs and scriptsvia dos2unix and by deleting the eol-style property set in usr.bin/sortDiscussed with: rpauloSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Wed, 01 Oct 2014 04:07:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e72055b7 - Import HyperV Key-Value Pair (KVP) driver and daemon code by Microsoft,</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#e72055b7</link>
        <description>Import HyperV Key-Value Pair (KVP) driver and daemon code by Microsoft,many thanks for their continued support of FreeBSD.While I&apos;m there, also implement a new build knob, WITHOUT_HYPERV todisable building and installing of the HyperV utilities when necessary.The HyperV utilities are only built for i386 and amd64 targets.This is a stable/10 candidate for inclusion with 10.1-RELEASE.Submitted by:	Wei Hu &lt;weh microsoft com&gt;MFC after:	1 week

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Sat, 13 Sep 2014 02:15:31 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6063d0d - Use src.opts.mk in preference to bsd.own.mk except where we need stuff</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#c6063d0d</link>
        <description>Use src.opts.mk in preference to bsd.own.mk except where we need stufffrom the latter.

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Tue, 06 May 2014 04:22:01 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6a54f620 - Rename WITHOUT_DMA into WITHOUT_DMAGENT to avoid confusion</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#6a54f620</link>
        <description>Rename WITHOUT_DMA into WITHOUT_DMAGENT to avoid confusionRequested by:	ian

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Sat, 22 Feb 2014 13:05:23 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>42a85952 - Please welcome casperd daemon. It (and its services) will be responsible for</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#42a85952</link>
        <description>Please welcome casperd daemon. It (and its services) will be responsible forgiving access to functionality that is not available in capability modesandbox. The functionality can be precisely restricted.Start with the following services:- system.dns - provides API compatible to:	- gethostbyname(3),	- gethostbyname2(3),	- gethostbyaddr(3),	- getaddrinfo(3),	- getnameinfo(3),- system.grp - provides getgrent(3)-compatible API,- system.pwd - provides getpwent(3)-compatible API,- system.random - allows to obtain entropy from /dev/random,- system.sysctl - provides sysctlbyname(3-compatible API.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Mon, 02 Dec 2013 08:21:28 +0000</pubDate>
        <dc:creator>Pawel Jakub Dawidek &lt;pjd@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fba3cde9 - Build and install the atf tests.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#fba3cde9</link>
        <description>Build and install the atf tests.Reviewed by:	freebsd-testingApproved by:	rpaulo (mentor)

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Fri, 08 Nov 2013 14:33:41 +0000</pubDate>
        <dc:creator>Julio Merino &lt;jmmv@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e01d128a - Subsume the functionality of MK_ATF into MK_TESTS.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#e01d128a</link>
        <description>Subsume the functionality of MK_ATF into MK_TESTS.There is no reason to keep the two knobs separate: if tests areenabled, the ATF libraries are required; and if tests are disabled,the ATF libraries are not necessary.  Keeping the two just servesto complicate the build.Reviewed by:	freebsd-testingApproved by:	rpaulo (mentor)

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Fri, 08 Nov 2013 14:24:47 +0000</pubDate>
        <dc:creator>Julio Merino &lt;jmmv@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5f385077 - By popular demand, move freebsd-version(1) from /libexec to /bin.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/libexec/Makefile#5f385077</link>
        <description>By popular demand, move freebsd-version(1) from /libexec to /bin.Approved by:	re (gjb)

            List of files:
            /freebsd-12.1/libexec/Makefile</description>
        <pubDate>Wed, 09 Oct 2013 20:47:20 +0000</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
