<?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>03675fcefd4b5842f217a2ba2826b8e7614de627 - Revert CC_WNO_USE_AFTER_FREE from Makefile&apos;s (thanks uwe@)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#03675fcefd4b5842f217a2ba2826b8e7614de627</link>
        <description>Revert CC_WNO_USE_AFTER_FREE from Makefile&apos;s (thanks uwe@)

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Thu, 03 Aug 2023 14:56:36 +0000</pubDate>
        <dc:creator>rin &lt;rin@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>91f8ac6d30a740fa9dadd96ae598a636f4d66f09 - Sprinkle CC_WNO_USE_AFTER_FREE for GCC 12</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#91f8ac6d30a740fa9dadd96ae598a636f4d66f09</link>
        <description>Sprinkle CC_WNO_USE_AFTER_FREE for GCC 12All of them are blamed for idiom equivalent to:	newbuf = realloc(buf, size);	p = newbuf + (p - buf);

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Thu, 03 Aug 2023 13:36:08 +0000</pubDate>
        <dc:creator>rin &lt;rin@NetBSD.org&gt;</dc:creator>
    </item>
<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.bin/sort/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.bin/sort/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.bin/sort/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.bin/sort/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>1310aa04b4a45257b778020555cd1de4706f8cb1 - Save length of key instead of relying of the weight of the record sep.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#1310aa04b4a45257b778020555cd1de4706f8cb1</link>
        <description>Save length of key instead of relying of the weight of the record sep.This frees a byte value to use for &apos;end of key&apos; (to correctly sortshort keys) while still having a weight assigned to the field sep.(Unless -t is given, the field sep is in the field data.)Do reverse sorts by writing the output file in reverse order (ratherthan reversing the sort - apart from merges).All key compares are now unweighted.For &apos;sort -u&apos; mark duplicates keys during the sort and don&apos;t writeto the output.Use -S to mean a posix sort - where equal keys are sorted using theraw record (rather than being kept in the original order).For &apos;sort -f&apos; (no keys) generate a key of the folded data (as for -n-i and -d), simplifies the code and allows a &apos;posix&apos; sort.

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Thu, 10 Sep 2009 22:02:40 +0000</pubDate>
        <dc:creator>dsl &lt;dsl@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4611f32c1ce7a399e7d183fcbf2aaada3488ea7b - Include a local copy of the sradixsort() code from libc.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#4611f32c1ce7a399e7d183fcbf2aaada3488ea7b</link>
        <description>Include a local copy of the sradixsort() code from libc.Currently unchanged apart from the deletion of the &apos;unstable&apos; version andother unneeded code.Use fldtab[0]. not fldtab-&gt; when we are referring to the global infoin the 0th entry to emphasise that this entry is different.fldtab[0].weights is only needed in the SINGL_FLD case - so set it there.Re-indent a big &apos;if&apos; is setfield() so that the line breaks match thelogic - which looks dubious now!

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Sat, 05 Sep 2009 09:16:18 +0000</pubDate>
        <dc:creator>dsl &lt;dsl@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c1ceae17f0d6ad69167715e05c1487f89f8571bc - Enable WARNS=4 by default for usr.bin, except for:</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#c1ceae17f0d6ad69167715e05c1487f89f8571bc</link>
        <description>Enable WARNS=4 by default for usr.bin, except for:	awk  bdes  checknr  compile_et  error  gss  hxtool  kgetcred  kinit	klist  ldd  less  lex  locale  login  m4  man  menuc  mk_cmds	mklocale  msgc  openssl  rpcgen  rpcinfo  sdiff  spell  ssh	string2key  telnet  tn3270  verify_krb5_conf  xlint

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Tue, 14 Apr 2009 22:15:16 +0000</pubDate>
        <dc:creator>lukem &lt;lukem@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8e730a41f81fc8a4410fb084b43e80859d733bac - this builds with WARNS=2</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#8e730a41f81fc8a4410fb084b43e80859d733bac</link>
        <description>this builds with WARNS=2

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Thu, 20 Mar 2003 16:15:28 +0000</pubDate>
        <dc:creator>jdolecek &lt;jdolecek@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0fbdf074b5301bf4207e69875890425d1d75e86a - put tmp.c back to Makefile, too</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#0fbdf074b5301bf4207e69875890425d1d75e86a</link>
        <description>put tmp.c back to Makefile, too

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Mon, 19 Feb 2001 17:45:24 +0000</pubDate>
        <dc:creator>jdolecek &lt;jdolecek@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d3a41710660920f059327d849781fb3000770dab - make ftmp() wrapper aroung tmpfile(), there is no need to reimplement it</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#d3a41710660920f059327d849781fb3000770dab</link>
        <description>make ftmp() wrapper aroung tmpfile(), there is no need to reimplement itmove ftmp() from tmp.c to files.cg/c no longer needed stuff

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Mon, 08 Jan 2001 19:16:49 +0000</pubDate>
        <dc:creator>jdolecek &lt;jdolecek@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6029888a3a9c52462839f9b28e7bbe534b10063a - Hit sort(1) with a hammer till it compiles.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#6029888a3a9c52462839f9b28e7bbe534b10063a</link>
        <description>Hit sort(1) with a hammer till it compiles.Also add RCSIDs.

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Sat, 07 Oct 2000 18:37:09 +0000</pubDate>
        <dc:creator>bjh21 &lt;bjh21@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1d5d9b5b60b451adcd8572a5395cc273590f6efa - 4.4BSD-Lite2 contrib/sort</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/netbsd-src/usr.bin/sort/Makefile#1d5d9b5b60b451adcd8572a5395cc273590f6efa</link>
        <description>4.4BSD-Lite2 contrib/sort

            List of files:
            /netbsd-src/usr.bin/sort/Makefile</description>
        <pubDate>Sat, 07 Oct 2000 16:39:34 +0000</pubDate>
        <dc:creator>bjh21 &lt;bjh21@NetBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
