<?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>c4b7a9e7940c62d92a81ee31e05e281e6035fadc - bsd.own.mk: rename GCC_NO_* to CC_WNO_*</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/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/showmount/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/history/netbsd-src/usr.bin/showmount/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/showmount/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>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.bin/showmount/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.bin/showmount/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>9e97520947daaa2729243e68c1b25587b6e2a895 - specify man pages the new way.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/Makefile#9e97520947daaa2729243e68c1b25587b6e2a895</link>
        <description>specify man pages the new way.

            List of files:
            /netbsd-src/usr.bin/showmount/Makefile</description>
        <pubDate>Thu, 22 Dec 1994 12:30:38 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0ac05e52593f49c3f76a53a4b6a3d560abe9ed73 - Merged with 4.4lite.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/Makefile#0ac05e52593f49c3f76a53a4b6a3d560abe9ed73</link>
        <description>Merged with 4.4lite.Changed to conform to NetBSD&apos;s new RCS Id convention.

            List of files:
            /netbsd-src/usr.bin/showmount/Makefile</description>
        <pubDate>Wed, 21 Dec 1994 08:42:01 +0000</pubDate>
        <dc:creator>jtc &lt;jtc@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9d26d3af36bd5f7b25619b68a820cbdd8d6a5311 - get section right; from Luke Mewburn &lt;lm@rmit.edu.au&gt;</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/Makefile#9d26d3af36bd5f7b25619b68a820cbdd8d6a5311</link>
        <description>get section right; from Luke Mewburn &lt;lm@rmit.edu.au&gt;

            List of files:
            /netbsd-src/usr.bin/showmount/Makefile</description>
        <pubDate>Sat, 19 Mar 1994 08:04:16 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f771d07953d899293d1919df031dd6a97c98f6db - no more librpc</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/Makefile#f771d07953d899293d1919df031dd6a97c98f6db</link>
        <description>no more librpc

            List of files:
            /netbsd-src/usr.bin/showmount/Makefile</description>
        <pubDate>Fri, 08 Oct 1993 02:34:16 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>75ff3a90bdf78d71d6253e1c27312748edf6211d - Add RCS identifiers.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/Makefile#75ff3a90bdf78d71d6253e1c27312748edf6211d</link>
        <description>Add RCS identifiers.

            List of files:
            /netbsd-src/usr.bin/showmount/Makefile</description>
        <pubDate>Fri, 30 Jul 1993 23:49:23 +0000</pubDate>
        <dc:creator>mycroft &lt;mycroft@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>61f282557f0bc41c0b762c629a2f4c14be8b7591 - initial import of 386bsd-0.1 sources</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/usr.bin/showmount/Makefile#61f282557f0bc41c0b762c629a2f4c14be8b7591</link>
        <description>initial import of 386bsd-0.1 sources

            List of files:
            /netbsd-src/usr.bin/showmount/Makefile</description>
        <pubDate>Sun, 21 Mar 1993 09:45:37 +0000</pubDate>
        <dc:creator>cgd &lt;cgd@NetBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
