<?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.sbin/mrouted/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>introduce new GCC 12 warning disables and use them in a few places<br/><br/>this introduces 4 new warning disable flags:<br/><br/>   CC_WNO_MISSING_TEMPLATE_KEYWORD<br/>   CC_WNO_REGISTER<br/>   CC_WNO_STRINGOP_OVERREAD<br/>   CC_WNO_ARRAY_BOUNDS<br/><br/>and documents them in README.warnings.  of these, the string op<br/>and array bounds are both problematic (real bugs) and also spurious<br/>(not real bugs), and the other 2 are mostly temporary for older<br/>3rd party code.<br/><br/>add some new uses of CC_WNO_STRINGOP_OVERFLOW.<br/><br/>fix m68k build for gallium and GCC 12.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.20</description>
    <pubDate>Tue Aug 08 06:27:33 UTC 2023</pubDate>
    <dc:creator>mrg</dc:creator>
</item>

<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.sbin/mrouted/Makefile - 1.19</description>
    <pubDate>Sat Jun 03 09:09:22 UTC 2023</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>bsd.own.mk: rename to CC_WNO_ADDRESS_OF_PACKED_MEMBER<br/><br/>Provide a single variable<br/>	CC_WNO_ADDRESS_OF_PACKED_MEMBER<br/>with options for both clang and gcc, to replace<br/>	CLANG_NO_ADDR_OF_PACKED_MEMBER<br/>	CC_NO_ADDR_OF_PACKED_MEMBER<br/>	GCC_NO_ADDR_OF_PACKED_MEMBER<br/><br/>Using the convention CC_compilerflag, where compilerflag<br/>is based on the full compiler flag name.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.18</description>
    <pubDate>Sat Jun 03 08:53:00 UTC 2023</pubDate>
    <dc:creator>lukem</dc:creator>
</item>

<item>
    <title>add support for new GCC 9 warnings that may be too much to fix<br/>right now.  new address-of-packed-member and format-overflow<br/>warnings have new GCC_NO_ADDR_OF_PACKED_MEMBER amd<br/>GCC_NO_FORMAT_OVERFLOW variables to remove these warnings.<br/><br/>apply to a bunch of the tree.  mostly, these are real bugs that<br/>should be fixed, but in many cases, only by removing the 'packed'<br/>attribute from some structure that doesn't really need it.  (i<br/>looked at many different ones, and while perhaps 60-80% were<br/>already properly aligned, it wasn't clear to me that the uses<br/>were always coming from sane data vs network alignment, so it<br/>doesn't seem safe to remove packed without careful research for<br/>each affect struct.)  clang already warned (and was not erroring)<br/>for many of these cases, but gcc picked up dozens more.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.17</description>
    <pubDate>Sun Sep 06 07:20:32 UTC 2020</pubDate>
    <dc:creator>mrg</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.sbin/mrouted/Makefile - 1.16</description>
    <pubDate>Sun Oct 13 07:28:19 UTC 2019</pubDate>
    <dc:creator>mrg</dc:creator>
</item>

<item>
    <title>branches:  1.15.44;<br/>Default to -Wno-sign-compare -Wno-pointer-sign for clang.<br/>Push -Wno-array-bounds down to the cases that depend on it.<br/>Selectively disable warnings for 3rd party software or non-trivial<br/>issues to be reviewed later to get clang -Werror to build most of the<br/>tree.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.15</description>
    <pubDate>Thu May 26 00:56:34 UTC 2011</pubDate>
    <dc:creator>joerg</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.sbin/mrouted/Makefile - 1.14</description>
    <pubDate>Mon May 28 00:06:38 UTC 2007</pubDate>
    <dc:creator>tls</dc:creator>
</item>

<item>
    <title>This seems to need a -I${.CURDIR} these days.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.13</description>
    <pubDate>Fri Mar 07 01:06:05 UTC 2003</pubDate>
    <dc:creator>fvdl</dc:creator>
</item>

<item>
    <title>Move back from gnu/dist/mrouted, now that it's available under a BSD<br/>license.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.12</description>
    <pubDate>Wed Mar 05 21:05:38 UTC 2003</pubDate>
    <dc:creator>wiz</dc:creator>
</item>

<item>
    <title>move mrouted out of basesrc, as it carries non-BSD license.<br/>agreed w/ core.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.11</description>
    <pubDate>Tue Oct 01 03:30:52 UTC 2002</pubDate>
    <dc:creator>itojun</dc:creator>
</item>

<item>
    <title>branches:  1.10.2;<br/>More #include &lt;stdlib.h&gt; string, etc. cleanup</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.10</description>
    <pubDate>Tue Jul 04 20:27:38 UTC 2000</pubDate>
    <dc:creator>matt</dc:creator>
</item>

<item>
    <title>branches:  1.9.8;<br/>Use daemon(3) and pidfile(3).</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.9</description>
    <pubDate>Sun Jun 06 03:27:06 UTC 1999</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>.y.c &lt;sys.mk&gt; rule fixes.  Don't create a y.tab.h file unless asked for,<br/>and use smarter creation of the header file.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.8</description>
    <pubDate>Thu Apr 09 00:32:41 UTC 1998</pubDate>
    <dc:creator>tv</dc:creator>
</item>

<item>
    <title>Update to mrouted 3.8.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.7</description>
    <pubDate>Sun Dec 10 10:08:37 UTC 1995</pubDate>
    <dc:creator>mycroft</dc:creator>
</item>

<item>
    <title>Update to mrouted 3.8.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.6</description>
    <pubDate>Sun Dec 10 10:06:55 UTC 1995</pubDate>
    <dc:creator>mycroft</dc:creator>
</item>

<item>
    <title>New-style RCS ids.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.5</description>
    <pubDate>Mon Oct 09 03:51:32 UTC 1995</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>cfparse.c and y.tab.h should be in CLEANFILES</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.4</description>
    <pubDate>Mon Jul 10 01:39:58 UTC 1995</pubDate>
    <dc:creator>cgd</dc:creator>
</item>

<item>
    <title>Update to multicast 3.5.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.3</description>
    <pubDate>Thu Jun 01 02:25:45 UTC 1995</pubDate>
    <dc:creator>mycroft</dc:creator>
</item>

<item>
    <title>specify man pages the new way.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.2</description>
    <pubDate>Thu Dec 22 11:36:22 UTC 1994</pubDate>
    <dc:creator>cgd</dc:creator>
</item>

<item>
    <title>Mrouted ported by cmaeda@cs.washington.edu from BSD386 port.</title>
    <description>/src/usr.sbin/mrouted/Makefile - 1.1</description>
    <pubDate>Tue Jan 11 20:15:47 UTC 1994</pubDate>
    <dc:creator>brezak</dc:creator>
</item>
</channel></rss>

