<?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>
    <link>http://nxr.netbsd.org/rss/src/usr.bin/rpcinfo/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>bsd.own.mk: rename GCC_NO_* to CC_WNO_*<br/><br/>Rename compiler-warning-disable variables from<br/>	GCC_NO_warning<br/>to<br/>	CC_WNO_warning<br/>where warning is the full warning name as used by the compiler.<br/><br/>GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH<br/><br/>Using the convention CC_compilerflag, where compilerflag<br/>is based on the full compiler flag name.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.17</description>
    <pubDate>Sat Jun 03 09:09:18 UTC 2023</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>introduce some common variables for use in GCC warning disables:<br/><br/>GCC_NO_FORMAT_TRUNCATION    -Wno-format-truncation (GCC 7/8)<br/>GCC_NO_STRINGOP_TRUNCATION  -Wno-stringop-truncation (GCC 8)<br/>GCC_NO_STRINGOP_OVERFLOW    -Wno-stringop-overflow (GCC 8)<br/>GCC_NO_CAST_FUNCTION_TYPE   -Wno-cast-function-type (GCC 8)<br/><br/>use these to turn off warnings for most GCC-8 complaints.  many<br/>of these are false positives, most of the real bugs are already<br/>commited, or are yet to come.<br/><br/><br/>we plan to introduce versions of (some?) of these that use the<br/>"-Wno-error=" form, which still displays the warnings but does<br/>not make it an error, and all of the above will be re-considered<br/>as either being "fix me" (warning still displayed) or "warning<br/>is wrong."</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.16</description>
    <pubDate>Sun Oct 13 07:28:16 UTC 2019</pubDate>
    <dc:creator>mrg</dc:creator>
</item>

<item>
    <title>branches:  1.15.26;<br/>passes WARNS=5, don't set it to 4.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.15</description>
    <pubDate>Wed Aug 21 21:05:29 UTC 2013</pubDate>
    <dc:creator>dholland</dc:creator>
</item>

<item>
    <title>branches:  1.14.4;  1.14.10;<br/>- WARNS ?= 4<br/>- fix memory leaks<br/>- fix error printing<br/>- pass lint<br/>- KNF<br/>- constify<br/>- ansify</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.14</description>
    <pubDate>Tue Feb 08 22:16:58 UTC 2011</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.13.2;<br/>Enable WARNS=4 by default for usr.bin, except for:<br/>	awk  bdes  checknr  compile_et  error  gss  hxtool  kgetcred  kinit<br/>	klist  ldd  less  lex  locale  login  m4  man  menuc  mk_cmds<br/>	mklocale  msgc  openssl  rpcgen  rpcinfo  sdiff  spell  ssh<br/>	string2key  telnet  tn3270  verify_krb5_conf  xlint</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.13</description>
    <pubDate>Tue Apr 14 22:15:25 UTC 2009</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>branches:  1.12.20;<br/>Since Christos cleaned up the use of libc internals here, we can switch<br/>these from USE_SSP to USE_FORT as they should be.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.12</description>
    <pubDate>Mon May 28 18:12:06 UTC 2007</pubDate>
    <dc:creator>tls</dc:creator>
</item>

<item>
    <title>Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the<br/>FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to<br/>various string and memory copy and set functions (as well as a few system<br/>calls and other miscellany) where known at function entry.  RedHat has<br/>evidently built all "core system packages" with this option for some time.<br/><br/>This option should be used at the top of Makefiles (or Makefile.inc where<br/>this is used for subdirectories) but after any setting of LIB.<br/><br/>This is only useful for userland code, and cannot be used in libc or in<br/>any code which includes the libc internals, because it overrides certain<br/>libc functions with macros.  Some effort has been made to make USE_FORT=yes<br/>work correctly for a full-system build by having the bsd.sys.mk logic<br/>disable the feature where it should not be used (libc, libssp iteself,<br/>the kernel) but no attempt has been made to build the entire system with<br/>USE_FORT and doing so will doubtless expose numerous bugs and misfeatures.<br/><br/>Adjust the system build so that all programs and libraries that are setuid,<br/>directly handle network data (including serial comm data), perform<br/>authentication, or appear likely to have (or have a history of having)<br/>data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default,<br/>with the exception of libc, which cannot use USE_FORT and thus uses<br/>only USE_SSP by default.  Tested on i386 with no ill results; USE_FORT=no<br/>per-directory or in a system build will disable if desired.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.11</description>
    <pubDate>Mon May 28 00:06:30 UTC 2007</pubDate>
    <dc:creator>tls</dc:creator>
</item>

<item>
    <title>remove the rest of the libc cruft.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.10</description>
    <pubDate>Sat May 26 23:00:22 UTC 2007</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>This does not appear to need rpc_generic.c</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.9</description>
    <pubDate>Sat May 26 22:58:43 UTC 2007</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>Only compile in IPv6 support if ${USE_INET6} != "no"<br/><br/>MKINET6 is for providing IPv6 infrastructure.<br/>USE_INET6 is for compiling IPv6 support into the programs (needs MKINET6).</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.8</description>
    <pubDate>Mon Jan 10 02:58:59 UTC 2005</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>makefile delint. use NETBSDSRCDIR as appropriate</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.7</description>
    <pubDate>Wed Sep 18 14:00:40 UTC 2002</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>Update rpcinfo to handle rpcbind version 3 and 4. Taken from Sun TI-RPC<br/>distribution.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.6</description>
    <pubDate>Fri Jun 02 23:19:38 UTC 2000</pubDate>
    <dc:creator>fvdl</dc:creator>
</item>

<item>
    <title>branches:  1.5.10;<br/>RCS ID police</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.5</description>
    <pubDate>Thu Jan 09 20:21:09 UTC 1997</pubDate>
    <dc:creator>tls</dc:creator>
</item>

<item>
    <title>specify man pages the new way.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.4</description>
    <pubDate>Thu Dec 22 00:30:41 UTC 1994</pubDate>
    <dc:creator>cgd</dc:creator>
</item>

<item>
    <title>no more librpc</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.3</description>
    <pubDate>Fri Oct 08 02:34:16 UTC 1993</pubDate>
    <dc:creator>cgd</dc:creator>
</item>

<item>
    <title>Add RCS identifiers.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.2</description>
    <pubDate>Fri Jul 30 23:51:26 UTC 1993</pubDate>
    <dc:creator>mycroft</dc:creator>
</item>

<item>
    <title>Added rpcinfo(8)</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.1</description>
    <pubDate>Sat Apr 03 00:52:27 UTC 1993</pubDate>
    <dc:creator>glass</dc:creator>
</item>

<item>
    <title>Sync w/ netbsd-1-5-base.</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.5.10.1</description>
    <pubDate>Fri Jun 23 16:39:53 UTC 2000</pubDate>
    <dc:creator>minoura</dc:creator>
</item>

<item>
    <title>Sync with HEAD.<br/><br/>Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.12.20.1</description>
    <pubDate>Wed May 13 19:20:03 UTC 2009</pubDate>
    <dc:creator>jym</dc:creator>
</item>

<item>
    <title>Sync with HEAD</title>
    <description>/src/usr.bin/rpcinfo/Makefile - 1.13.2.1</description>
    <pubDate>Thu Feb 17 00:00:56 UTC 2011</pubDate>
    <dc:creator>bouyer</dc:creator>
</item>
</channel></rss>

