<?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>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>93c43690 - pkgbase: Put more binaries/lib in runtime</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#93c43690</link>
        <description>pkgbase: Put more binaries/lib in runtimeMove some needed binaries/libs from FreeBSD-utilities to FreeBSD_runtime.This is everything needed to boot to multiuser with FreeBSD-rc installed.MFC after:	2 weeksSponsored by:	Beckhoff Automation GmbH &amp; Co. KGDifferential Revision:	https://reviews.freebsd.org/D33435

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Tue, 14 Dec 2021 14:31:30 +0000</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c3a6ea5b - Allow compiling usr.bin/find on Linux and Mac</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#c3a6ea5b</link>
        <description>Allow compiling usr.bin/find on Linux and MacWhen building FreeBSD the makefiles invoke find with various flags such as`-s` that aren&apos;t supported in the native /usr/bin/find. To fix this Ibuild the FreeBSD version of find and use that when crossbuilding.Inserting lots if #ifdefs in the code is rather ugly but I don&apos;t see abetter solution.Reviewed By:	brooks (mentor)Approved By:	jhb (mentor)Differential Revision: https://reviews.freebsd.org/D13306

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Tue, 06 Feb 2018 15:41:26 +0000</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9d75d6c9 - find: Link tests to the build</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#9d75d6c9</link>
        <description>find: Link tests to the build

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Sun, 31 Dec 2017 19:24:13 +0000</pubDate>
        <dc:creator>Jilles Tjoelker &lt;jilles@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d8a0fe10 - find(1): Fix -newer and -samefile to conform to POSIX[0]</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#d8a0fe10</link>
        <description>find(1): Fix -newer and -samefile to conform to POSIX[0]By default, or with the -P flag, find(1) should evaluate paths &quot;physically.&quot;For symlinks, this means using the link itself instead of the target.Historically (since the import of BSD 4.4-lite from CSRG), find(1) hasfailed to refer to the link itself, at least for -newer and -samefile.[0]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/find.htmlPR:		222698Reported by:	Harald Schmalzbauer &lt;bugzilla.freebsd AT omnilan.de&gt;Sponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Fri, 29 Dec 2017 22:08:43 +0000</pubDate>
        <dc:creator>Conrad Meyer &lt;cem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>478290db - Check in first src/tests snapshot from NetBSD anoncvs</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#478290db</link>
        <description>Check in first src/tests snapshot from NetBSD anoncvsSources were obtained like so:% export CVSROOT=&quot;anoncvs@anoncvs.NetBSD.org:/cvsroot&quot;% cvs -z9 co -D &quot;09/30/2014 20:45&quot; -P src/tests% mv src/tests/* tests/dist/.&apos;*CVS*&apos; has been added to svn:ignore to ease updating periodically fromupstreamSome line ending issues had to be resolved with test outputs and scriptsvia dos2unix and by deleting the eol-style property set in usr.bin/sortDiscussed with: rpauloSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Wed, 01 Oct 2014 04:07:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7e659f94 - Add the Clang specific -Wmissing-variable-declarations to WARNS=6.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#7e659f94</link>
        <description>Add the Clang specific -Wmissing-variable-declarations to WARNS=6.This compiler flag enforces that that people either mark variablesstatic or use an external declarations for the variable, similar to how-Wmissing-prototypes works for functions.Due to the fact that Yacc/Lex generate code that cannot trivially bechanged to not warn because of this (lots of yy* variables), add aNO_WMISSING_VARIABLE_DECLARATIONS that can be used to turn off thisspecific compiler warning.Announced on:	toolchain@

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Fri, 19 Apr 2013 19:45:00 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7f5883ad - Remove unneeded CFLAGS.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#7f5883ad</link>
        <description>Remove unneeded CFLAGS.

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Wed, 10 Feb 2010 07:15:21 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b7946da9 - Build usr.bin/ with WARNS=6 by default.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#b7946da9</link>
        <description>Build usr.bin/ with WARNS=6 by default.Also add some missing $FreeBSD$ to keep svn happy.

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 10:27:05 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>46c2bd61 - - Make find(1) WARNS?= 6 clean</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#46c2bd61</link>
        <description>- Make find(1) WARNS?= 6 clean- Bump to WARNS?= 6Approved by:	stefanf, grehan (mentor)

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Tue, 25 Jan 2005 14:07:25 +0000</pubDate>
        <dc:creator>Suleiman Souhlal &lt;ssouhlal@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5e28140a - Fix to WARNS=2 level.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#5e28140a</link>
        <description>Fix to WARNS=2 level.Tested by:	AXP gcc 3.1

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Mon, 15 Apr 2002 19:27:41 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6f986385 - Clean up the 1/2 a** committing from Thu, 3 May 2001 11:05:39 -0700 (PDT).</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#6f986385</link>
        <description>Clean up the 1/2 a** committing from Thu, 3 May 2001 11:05:39 -0700 (PDT).Since then we have living with a GPL&apos;ed find(1) due to grabbing getdate.yfrom src/contrib/cvs and its user of the GPL&apos;ed xtime.h.  I don&apos;t even wantto think about how this could have affected people using our source base.Would it have been too much trouble to do then what I did now?Copied getdate.y (public domain) to usr.bin/find and change to usestandard system headers.  find(1) now compiles simply with out havingto go to extra effort to do so.Pointed hat to:	phkBuild fixed on:	gcc 3.1 using platforms

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Sun, 14 Apr 2002 01:30:20 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>48d09ba6 - There is breakage in parsedate, so revert to get_date until this can be</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#48d09ba6</link>
        <description>There is breakage in parsedate, so revert to get_date until this can beresolved.Reported by:	paul

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Tue, 02 Apr 2002 10:45:34 +0000</pubDate>
        <dc:creator>Mark Murray &lt;markm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3fa1df42 - Allow to compile a YACC produced file with GCC 3.1 (which has different</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#3fa1df42</link>
        <description>Allow to compile a YACC produced file with GCC 3.1 (which has differentheader searching rules for generated files with #line).

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Mon, 01 Apr 2002 22:55:01 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2a66bf16 - Restructure for own parsedate (replacement for get_date from CVS).</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#2a66bf16</link>
        <description>Restructure for own parsedate (replacement for get_date from CVS).Fix up parsedate.y for WARNS=4.Reviewd by:	bde (except for parsedate.y diffs)

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Thu, 21 Mar 2002 21:56:05 +0000</pubDate>
        <dc:creator>Mark Murray &lt;markm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e98080b1 - 1) Remove -Wall from Makefile.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#e98080b1</link>
        <description>1) Remove -Wall from Makefile.2) WARNs fixes (rename option to lookup_option to avoid shadowing, rename   argv to argv1 to avoid shadowing, const stuff, prototypes, __unused).3) Remove &quot;register&quot;s.

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Wed, 27 Feb 2002 17:57:00 +0000</pubDate>
        <dc:creator>David Malone &lt;dwmalone@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ea92232a - They add the following commands:</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#ea92232a</link>
        <description>They add the following commands:   -anewer   -cnewer   -mnewer   -okdir   -newer[acm][acmt] With it, you can form queries like     find . -newerct &apos;1 minute ago&apos; -print As an extra bonus, the program is ANSI-fied - the original version relies on some obscure features of K&amp;R C.(This PR was submitted in 1999, and the submittor has kept the patchupdated ever since, hats off for him guys, and how about you close a PR ??)PR:		9374Submitted by:	Martin Birgmeier &lt;Martin.Birgmeier@aon.at&gt;

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Thu, 03 May 2001 18:05:35 +0000</pubDate>
        <dc:creator>Poul-Henning Kamp &lt;phk@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>141d77b8 - Switch over to using the new fflagstostr and strtofflags library calls.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#141d77b8</link>
        <description>Switch over to using the new fflagstostr and strtofflags library calls.

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Sat, 17 Jun 2000 14:19:33 +0000</pubDate>
        <dc:creator>Josef Karthauser &lt;joe@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c76bc8f3 - This patch adds the -mindepth and -maxdepth options to find(1), which</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#c76bc8f3</link>
        <description>This patch adds the -mindepth and -maxdepth options to find(1), which    behave as in GNU find (and of course as described in the manual page    diff included).  I think these options would be useful for some people.    Some missing $FreeBSD$ tags are also added.    The patch was slightly modified (send-pr mangling of TABS).PR:		bin/18941Submitted by:	Ben Smithurst &lt;ben@scientia.demon.co.uk&gt;

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Mon, 12 Jun 2000 11:12:41 +0000</pubDate>
        <dc:creator>Ollivier Robert &lt;roberto@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>418d67b0 - Revert part of the last commit, remove {g|s}etflags from the libc</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/find/Makefile#418d67b0</link>
        <description>Revert part of the last commit, remove {g|s}etflags from the libcinterface, and statically link them to the programs using them.These functions, upon reflection and discussion, are too genericallynamed for a library interface with such specific functionality.Also the api that they use, whilst ok for private use, isn&apos;t goodenough for a libc function.Additionally there were complications with the build/install-worldprocess.  It depends heavily upon xinstall, which got broken bythe change in api, and caused bootstrap problems and general mayhem.There is work in progress to address future problems that may becaused by changes in install-chain tools, and better names for{g|s}etflags can be derived when some future program requires them.For now the code has been left in src/lib/libc/gen (it started offin src/bin/ls).It&apos;s important to provide library functions for manipulating fileflag strings if we ever want this interface to be adopted outsideof the source tree, but now isn&apos;t necessarily the right momentwith 4.0-release just around the corner.Approved:	jkh

            List of files:
            /freebsd-14.2/usr.bin/find/Makefile</description>
        <pubDate>Sat, 05 Feb 2000 18:42:36 +0000</pubDate>
        <dc:creator>Josef Karthauser &lt;joe@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
