<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>c4b7a9e7940c62d92a81ee31e05e281e6035fadc - bsd.own.mk: rename GCC_NO_* to CC_WNO_*</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#c4b7a9e7940c62d92a81ee31e05e281e6035fadc</link>
        <description>bsd.own.mk: rename GCC_NO_* to CC_WNO_*Rename compiler-warning-disable variables from	GCC_NO_warningto	CC_WNO_warningwhere warning is the full warning name as used by the compiler.GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGHUsing the convention CC_compilerflag, where compilerflagis based on the full compiler flag name.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sat, 03 Jun 2023 09:09:01 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>de11d876419df3570c2418468613aebcebafe6ae - introduce some common variables for use in GCC warning disables:</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#de11d876419df3570c2418468613aebcebafe6ae</link>
        <description>introduce some common variables for use in GCC warning disables:GCC_NO_FORMAT_TRUNCATION    -Wno-format-truncation (GCC 7/8)GCC_NO_STRINGOP_TRUNCATION  -Wno-stringop-truncation (GCC 8)GCC_NO_STRINGOP_OVERFLOW    -Wno-stringop-overflow (GCC 8)GCC_NO_CAST_FUNCTION_TYPE   -Wno-cast-function-type (GCC 8)use these to turn off warnings for most GCC-8 complaints.  manyof these are false positives, most of the real bugs are alreadycommited, or are yet to come.we plan to introduce versions of (some?) of these that use the&quot;-Wno-error=&quot; form, which still displays the warnings but doesnot make it an error, and all of the above will be re-consideredas either being &quot;fix me&quot; (warning still displayed) or &quot;warningis wrong.&quot;

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sun, 13 Oct 2019 07:28:04 +0000</pubDate>
        <dc:creator>mrg &lt;mrg@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d877c4c3c02304002c0642d7f34a58d07138d6a9 - Enable WARNS=4 by default, except for:</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#d877c4c3c02304002c0642d7f34a58d07138d6a9</link>
        <description>Enable WARNS=4 by default, except for:	cpuctl  dumplfs  hprop  ipf  iprop-log  kadmin  kcm  kdc  kdigest	kimpersonate  kstash  ktutil  makefs  ndbootd  ntp  pppd  quot	racoon  racoonctl  rtadvd  sntp  sup  tcpdchk  tcpdmatch  tcpdump	traceroute  traceroute6  user  veriexecgen  wsmoused  zic(Mostly third-party applications)

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Wed, 22 Apr 2009 15:23:01 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>97dcde77bcee5e5caf354d861fe5442a41e0df00 - - Compile in with debugging by default.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#97dcde77bcee5e5caf354d861fe5442a41e0df00</link>
        <description>- Compile in with debugging by default.- General cleanup.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sat, 07 Jul 2007 22:33:57 +0000</pubDate>
        <dc:creator>christos &lt;christos@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4147a3c54a369fdf2775e8a91ce4916614e21d3b - Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#4147a3c54a369fdf2775e8a91ce4916614e21d3b</link>
        <description>Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on theFORTIFY_SOURCE feature of libssp, thus checking the size of arguments tovarious string and memory copy and set functions (as well as a few systemcalls and other miscellany) where known at function entry.  RedHat hasevidently built all &quot;core system packages&quot; with this option for some time.This option should be used at the top of Makefiles (or Makefile.inc wherethis is used for subdirectories) but after any setting of LIB.This is only useful for userland code, and cannot be used in libc or inany code which includes the libc internals, because it overrides certainlibc functions with macros.  Some effort has been made to make USE_FORT=yeswork correctly for a full-system build by having the bsd.sys.mk logicdisable the feature where it should not be used (libc, libssp iteself,the kernel) but no attempt has been made to build the entire system withUSE_FORT and doing so will doubtless expose numerous bugs and misfeatures.Adjust the system build so that all programs and libraries that are setuid,directly handle network data (including serial comm data), performauthentication, or appear likely to have (or have a history of having)data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default,with the exception of libc, which cannot use USE_FORT and thus usesonly USE_SSP by default.  Tested on i386 with no ill results; USE_FORT=noper-directory or in a system build will disable if desired.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Mon, 28 May 2007 12:06:17 +0000</pubDate>
        <dc:creator>tls &lt;tls@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>653c3855f5529f7f6eca43df1c4da99052af883f - Use pidfile(3).</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#653c3855f5529f7f6eca43df1c4da99052af883f</link>
        <description>Use pidfile(3).

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sun, 06 Jun 1999 02:38:00 +0000</pubDate>
        <dc:creator>thorpej &lt;thorpej@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0a94f4f07799cd2ae10e7ee3d8ccd3b9af1412e8 - use CPPFLAGS instead of CFLAGS</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#0a94f4f07799cd2ae10e7ee3d8ccd3b9af1412e8</link>
        <description>use CPPFLAGS instead of CFLAGS

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sat, 25 Oct 1997 06:57:53 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f5bf267d9096d2679cea06dfdac5978207559056 - enable WARNS=1 by default, but disable in unclean 3rd party code</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#f5bf267d9096d2679cea06dfdac5978207559056</link>
        <description>enable WARNS=1 by default, but disable in unclean 3rd party code

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sat, 18 Oct 1997 06:42:25 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b34611f260098f1f12c1bcc4df9ba8ae5173e478 - use WARNS?=1 not WARNS=1 , cleanup manpage typo</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#b34611f260098f1f12c1bcc4df9ba8ae5173e478</link>
        <description>use WARNS?=1 not WARNS=1 , cleanup manpage typo

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Mon, 06 Oct 1997 00:52:51 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e17f9e900e7baf931ff35ce959fb90553d0756ff - Teensy change to use WARNS.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#e17f9e900e7baf931ff35ce959fb90553d0756ff</link>
        <description>Teensy change to use WARNS.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Fri, 18 Jul 1997 07:57:55 +0000</pubDate>
        <dc:creator>thorpej &lt;thorpej@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d65e85e261fd4e31a07baa511ec50b51e14cf95e - * use _yp_invalid_domain() (from libc) to validate the domainnames</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#d65e85e261fd4e31a07baa511ec50b51e14cf95e</link>
        <description>* use _yp_invalid_domain() (from libc) to validate the domainnames* cleanup for -Wall* use __RCSIDthe following were inspired by openbsd:* only allow connections from reserved ports* implement -insecure, which turns off the above restriction (required  for sunos 3.x and ultrix)* prevent more than 100 domains from being bound at once, preventing  a denial of service attacks

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Mon, 07 Jul 1997 02:27:05 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>401810260a2b3d94ccdbaddcf545720d7cb818e4 - -DDEAMON is no longer used, so remove it from CFLAGS.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#401810260a2b3d94ccdbaddcf545720d7cb818e4</link>
        <description>-DDEAMON is no longer used, so remove it from CFLAGS.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Tue, 09 Jul 1996 06:36:31 +0000</pubDate>
        <dc:creator>thorpej &lt;thorpej@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b2fd6338ed6ca73028887a943f24fc236e7664d0 - RCS id police.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#b2fd6338ed6ca73028887a943f24fc236e7664d0</link>
        <description>RCS id police.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Mon, 13 May 1996 02:43:35 +0000</pubDate>
        <dc:creator>thorpej &lt;thorpej@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d065420b32bb7612e5fb0a591f870ad7fe5b75f5 - specify man pages the new way.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#d065420b32bb7612e5fb0a591f870ad7fe5b75f5</link>
        <description>specify man pages the new way.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Thu, 22 Dec 1994 11:43:15 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>17595b3407ac14f79cf5387f6b06dd612836f119 - man page from Jason Thorpe</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#17595b3407ac14f79cf5387f6b06dd612836f119</link>
        <description>man page from Jason Thorpe

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Fri, 28 Oct 1994 16:46:57 +0000</pubDate>
        <dc:creator>deraadt &lt;deraadt@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7473e6d9a3c76f4a83ff58d5d1f55d5cfa26d10e - from wolfgang, various further cleanup, and</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#7473e6d9a3c76f4a83ff58d5d1f55d5cfa26d10e</link>
        <description>from wolfgang, various further cleanup, andmpliment the &quot;clients are asking via RPC, therefore that might meanthe server is possibly dead&quot; heuristic I bailed on earlier.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Sat, 02 Jul 1994 06:45:48 +0000</pubDate>
        <dc:creator>deraadt &lt;deraadt@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9d6b69f3419ed43162563f74b0ec4a9846e12af - kill bindirs</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#e9d6b69f3419ed43162563f74b0ec4a9846e12af</link>
        <description>kill bindirs

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Fri, 18 Feb 1994 03:01:30 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>080e65aef672effdfb4fc431adb32b6b8795b4d9 - Add RCS identifiers.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#080e65aef672effdfb4fc431adb32b6b8795b4d9</link>
        <description>Add RCS identifiers.

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Fri, 30 Jul 1993 11:10:53 +0000</pubDate>
        <dc:creator>mycroft &lt;mycroft@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c1fa28cf2c05c4d19eaad0284157f2c4e18bd3f5 - use BINDIR, rather than DESTDIR to specify binary&apos;s location.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#c1fa28cf2c05c4d19eaad0284157f2c4e18bd3f5</link>
        <description>use BINDIR, rather than DESTDIR to specify binary&apos;s location.the former is correct, the latter is not.  actually, this makefileprobably should be hacked a bit more, but i&apos;m not up to it now

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Fri, 28 May 1993 12:38:51 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e39dac2f5612551011bd3133bf479f28d36e9d78 - initial rev</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.sbin/ypbind/Makefile#e39dac2f5612551011bd3133bf479f28d36e9d78</link>
        <description>initial rev

            List of files:
            /netbsd-src/usr.sbin/ypbind/Makefile</description>
        <pubDate>Mon, 26 Apr 1993 08:09:02 +0000</pubDate>
        <dc:creator>deraadt &lt;deraadt@NetBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
