<?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>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d511b20a - Add HAS_TESTS to all Makefiles that are currently using the</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#d511b20a</link>
        <description>Add HAS_TESTS to all Makefiles that are currently using the`SUBDIR.${MK_TESTS}+= tests` idiom.This is a follow up to r321912.

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 08:50:42 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4b330699 - Convert traditional ${MK_TESTS} conditional idiom for including test</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#4b330699</link>
        <description>Convert traditional ${MK_TESTS} conditional idiom for including testdirectories to SUBDIR.${MK_TESTS} idiomThis is being done to pave the way for future work (and homogenity) in^/projects/make-check-sandbox .No functional change intended.MFC after:	1 weeks

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 08:35:51 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>609b7b26 - Add a knob, WITH*_RPCBIND_WARMSTART_SUPPORT, to allow the end-user to build</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#609b7b26</link>
        <description>Add a knob, WITH*_RPCBIND_WARMSTART_SUPPORT, to allow the end-user to buildrpcbind(8) with/without warmstart support.The knob defaults to off to preserve POLA for the feature.See rpcbind(8) for more details about the warmstart feature.MFC after:	7 weeksRelnotes:	yesSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Wed, 19 Apr 2017 20:45:46 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ebb27fd0 - Fix indentation per style.Makefile(5)</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#ebb27fd0</link>
        <description>Fix indentation per style.Makefile(5)MFC after:	7 weeksSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Wed, 19 Apr 2017 20:27:13 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>74410f93 - Conditionalize wrap(3) use based on MK_TCP_WRAPPERS instead of</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#74410f93</link>
        <description>Conditionalize wrap(3) use based on MK_TCP_WRAPPERS instead ofalways building support into rpcbind.MFC after:	2 weeks

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Fri, 06 Jan 2017 04:13:08 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a85f1232 - &quot;source routing&quot; in rpcbind</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#a85f1232</link>
        <description>&quot;source routing&quot; in rpcbindFix a bug in rpcbind for multihomed hosts. If the server had interfaces ontwo separate subnets, and a client on the first subnet contacted rpcbind atthe address on the second subnet, rpcbind would advertise addresses on thefirst subnet. This is a bug, because it should prefer to advertise theaddress where it was contacted. The requested service might be firewalledoff from the address on the first subnet, for example.usr.sbin/rpcbind/check_bound.c	If the address on which a request was received is known, pass that	to addrmerge as the clnt_uaddr parameter. That is what addrmerge&apos;s	comment indicates the parameter is supposed to mean. The previous	behavior is that clnt_uaddr would contain the address from which the	client sent the request.usr.sbin/rpcbind/util.c	Modify addrmerge to prefer to use an IP that is equal to clnt_uaddr,	if one is found. Refactor the relevant portion of the function for	clarity, and to reduce the number of ifdefs.etc/mtree/BSD.tests.distusr.sbin/rpcbind/tests/Makefileusr.sbin/rpcbind/tests/addrmerge_test.c	Add unit tests for usr.sbin/rpcbind/util.c:addrmerge.usr.sbin/rpcbind/check_bound.cusr.sbin/rpcbind/rpcbind.husr.sbin/rpcbind/util.c	Constify some function argumentsReviewed by:	impMFC after:	4 weeksSponsored by:	Spectra Logic CorpDifferential Revision:	https://reviews.freebsd.org/D4690

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Wed, 06 Jan 2016 00:00:11 +0000</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6db8143 - Convert usr.sbin to LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#c6db8143</link>
        <description>Convert usr.sbin to LIBADDReduce overlinking

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 16:57:27 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7a78c2b3 - rpcbind does not need to be linked to libutil</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#7a78c2b3</link>
        <description>rpcbind does not need to be linked to libutil

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Thu, 06 Nov 2014 10:07:26 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@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-14.2/usr.sbin/rpcbind/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-14.2/usr.sbin/rpcbind/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>71ccf092 - The last big commit: let usr.sbin/ use WARNS=6 by default.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#71ccf092</link>
        <description>The last big commit: let usr.sbin/ use WARNS=6 by default.

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 11:07:44 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e1fe3dba - Reimplementation of world/kernel build options.  For details, see:</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#e1fe3dba</link>
        <description>Reimplementation of world/kernel build options.  For details, see:http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.htmlThe src.conf(5) manpage is to follow in a few days.Brought to you by:	imp, jhb, kris, phk, ru (all bugs are mine)

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Fri, 17 Mar 2006 18:54:44 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>03d485eb - Remove including of libc sources.  All the required functions</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#03d485eb</link>
        <description>Remove including of libc sources.  All the required functionsare exported by libc with prototypes in our standard headers.I guess at one time this was necessary, but not any longer.

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Fri, 10 Mar 2006 07:58:02 +0000</pubDate>
        <dc:creator>Daniel Eischen &lt;deischen@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f91072f7 - Don&apos;t build IPv6 support if NO_INET6 was defined</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#f91072f7</link>
        <description>Don&apos;t build IPv6 support if NO_INET6 was definedPR:		kern/73865Submitted by:	Jeremy Chadwick &lt;freebsd@jdc.parodius.com&gt;MFC after:	3 days

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Mon, 06 Mar 2006 10:07:52 +0000</pubDate>
        <dc:creator>Matteo Riondato &lt;matteo@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>052238b1 - style.Makefile(5)</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#052238b1</link>
        <description>style.Makefile(5)

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Fri, 04 Apr 2003 17:49:21 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>90e655ea - Perform a major cleanup of the usr.sbin Makefiles.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#90e655ea</link>
        <description>Perform a major cleanup of the usr.sbin Makefiles.These are not perfectly in agreement with each other style-wise, but theyare orders of orders of magnitude more consistent style-wise than before.

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Fri, 20 Jul 2001 06:20:32 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>345e52e7 - - Backout botched attempt to introduce MANSECT feature.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#345e52e7</link>
        <description>- Backout botched attempt to introduce MANSECT feature.- MAN[1-9] -&gt; MAN.

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Mon, 26 Mar 2001 14:42:20 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c73e22c3 - Set the default manual section for usr.sbin/ to 8.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#c73e22c3</link>
        <description>Set the default manual section for usr.sbin/ to 8.

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Tue, 20 Mar 2001 18:17:26 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8360efbd - Bring in a hybrid of SunSoft&apos;s transport-independent RPC (TI-RPC) and</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/rpcbind/Makefile#8360efbd</link>
        <description>Bring in a hybrid of SunSoft&apos;s transport-independent RPC (TI-RPC) andassociated changes that had to happen to make this possible as well asbugs fixed along the way.  Bring in required TLI library routines to support this.  Since we don&apos;t support TLI we&apos;ve essentially copied what NetBSD  has done, adding a thin layer to emulate direct the TLI calls  into BSD socket calls.  This is mostly from Sun&apos;s tirpc release that was made in 1994,  however some fixes were backported from the 1999 release (supposedly  only made available after this porting effort was underway).  The submitter has agreed to continue on and bring us up to the  1999 release.  Several key features are introduced with this update:    Client calls are thread safe. (1999 code has server side thread    safe)    Updated, a more modern interface.  Many userland updates were done to bring the code up to par with  the recent RPC API.  There is an update to the pthreads library, a function  pthread_main_np() was added to emulate a function of Sun&apos;s threads  library.  While we&apos;re at it, bring in NetBSD&apos;s lockd, it&apos;s been far too  long of a wait.  New rpcbind(8) replaces portmap(8) (supporting communication over  an authenticated Unix-domain socket, and by default only allowing  set and unset requests over that channel). It&apos;s much more secure  than the old portmapper.  Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded  to support TI-RPC and to support IPV6.  Umount(8) is also fixed to unmount pathnames longer than 80 chars,  which are currently truncated by the Kernel statfs structure.Submitted by: Martin Blapp &lt;mb@imp.ch&gt;Manpage review: ruSecure RPC implemented by: wpaul

            List of files:
            /freebsd-14.2/usr.sbin/rpcbind/Makefile</description>
        <pubDate>Mon, 19 Mar 2001 12:50:13 +0000</pubDate>
        <dc:creator>Alfred Perlstein &lt;alfred@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
