<?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>14360cba7a86671d7cf42220d83bb7594e7103f9 - traceroute6: Remove __packed</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#14360cba7a86671d7cf42220d83bb7594e7103f9</link>
        <description>traceroute6: Remove __packed

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Wed, 03 Feb 2021 06:42:50 +0000</pubDate>
        <dc:creator>roy &lt;roy@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cb93b81028a438562e5ded116fc123493c690319 - add support for new GCC 9 warnings that may be too much to fix</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#cb93b81028a438562e5ded116fc123493c690319</link>
        <description>add support for new GCC 9 warnings that may be too much to fixright now.  new address-of-packed-member and format-overflowwarnings have new GCC_NO_ADDR_OF_PACKED_MEMBER amdGCC_NO_FORMAT_OVERFLOW variables to remove these warnings.apply to a bunch of the tree.  mostly, these are real bugs thatshould be fixed, but in many cases, only by removing the &apos;packed&apos;attribute from some structure that doesn&apos;t really need it.  (ilooked at many different ones, and while perhaps 60-80% werealready properly aligned, it wasn&apos;t clear to me that the useswere always coming from sane data vs network alignment, so itdoesn&apos;t seem safe to remove packed without careful research foreach affect struct.)  clang already warned (and was not erroring)for many of these cases, but gcc picked up dozens more.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Sun, 06 Sep 2020 07:20:26 +0000</pubDate>
        <dc:creator>mrg &lt;mrg@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4953d3d3b9c289cde033fdec7414e0615fd0c6c4 - Remove CPPFLAGS+=-DUSE_RFC3542, it&apos;s not used anymore.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#4953d3d3b9c289cde033fdec7414e0615fd0c6c4</link>
        <description>Remove CPPFLAGS+=-DUSE_RFC3542, it&apos;s not used anymore.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Mon, 23 Apr 2018 10:19:11 +0000</pubDate>
        <dc:creator>maxv &lt;maxv@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>64b9d7212f20f6c15c57a22007ea107730bc2ae4 - Add AS support for traceroute6. While here cleanup both traceroute programs</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#64b9d7212f20f6c15c57a22007ea107730bc2ae4</link>
        <description>Add AS support for traceroute6. While here cleanup both traceroute programsa bit.XXX: Error printing on traceroute should be revisited.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Tue, 10 May 2011 01:52:49 +0000</pubDate>
        <dc:creator>christos &lt;christos@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d877c4c3c02304002c0642d7f34a58d07138d6a9 - Enable WARNS=4 by default, except for:</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/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/traceroute6/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>4147a3c54a369fdf2775e8a91ce4916614e21d3b - Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/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/traceroute6/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>de8db4754701f0ea5f6e9ba2f8ad14c60b672f3b - Add support for RFC 3542 Adv. Socket API for IPv6 (which obsoletes 2292).</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#de8db4754701f0ea5f6e9ba2f8ad14c60b672f3b</link>
        <description>Add support for RFC 3542 Adv. Socket API for IPv6 (which obsoletes 2292).* RFC 3542 isn&apos;t binary compatible with RFC 2292.* RFC 2292 support is on by default but can be disabled.* update ping6, telnet and traceroute6 to the new API.From the KAME project (www.kame.net).Reviewed by core.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Fri, 05 May 2006 00:03:21 +0000</pubDate>
        <dc:creator>rpaulo &lt;rpaulo@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ffa892c2d780fc3c4a568428667dbfe9808b1635 - use poll(2).</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#ffa892c2d780fc3c4a568428667dbfe9808b1635</link>
        <description>use poll(2).

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Sun, 08 Oct 2000 06:40:42 +0000</pubDate>
        <dc:creator>itojun &lt;itojun@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>829f1b84518c9dbdc812b84e4847fab740c99553 - avoid fd_set size overflow.  from deraadt@openbsd, sync with kame.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#829f1b84518c9dbdc812b84e4847fab740c99553</link>
        <description>avoid fd_set size overflow.  from deraadt@openbsd, sync with kame.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Sat, 07 Oct 2000 06:41:37 +0000</pubDate>
        <dc:creator>itojun &lt;itojun@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fdf456b5f073ee6245f09b84b35980070357c168 - Nuke gratuitous setting of BINOWN and BINGRP.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#fdf456b5f073ee6245f09b84b35980070357c168</link>
        <description>Nuke gratuitous setting of BINOWN and BINGRP.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Fri, 25 Feb 2000 08:52:03 +0000</pubDate>
        <dc:creator>mycroft &lt;mycroft@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9a6abc8c5d946503cfaeab85e6f2bd2fe7fb8b76 - s/CFLAGS/CPPFLAGS/ for -D and -I.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#9a6abc8c5d946503cfaeab85e6f2bd2fe7fb8b76</link>
        <description>s/CFLAGS/CPPFLAGS/ for -D and -I.

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Sat, 03 Jul 1999 06:26:25 +0000</pubDate>
        <dc:creator>itojun &lt;itojun@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2447462b5eee7e5cbb2af5a1ee36d92d958a20a4 - traceroute6: traceroute for IPv6.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.sbin/traceroute6/Makefile#2447462b5eee7e5cbb2af5a1ee36d92d958a20a4</link>
        <description>traceroute6: traceroute for IPv6.TODO: better to be separate, or merged?

            List of files:
            /netbsd-src/usr.sbin/traceroute6/Makefile</description>
        <pubDate>Thu, 01 Jul 1999 20:55:03 +0000</pubDate>
        <dc:creator>itojun &lt;itojun@NetBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
