<?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>23401aeb15cec75fc215550b032aa898d2e62455 - Replace last few remaining MAN[1-8] with MAN</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#23401aeb15cec75fc215550b032aa898d2e62455</link>
        <description>Replace last few remaining MAN[1-8] with MANReviewed by:	ivyDifferential Revision:	https://reviews.freebsd.org/D51530

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Sat, 26 Jul 2025 12:00:02 +0200</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:55:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>93c43690960274dd3bb67b1ee0f1dd3ca4d13def - pkgbase: Put more binaries/lib in runtime</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#93c43690960274dd3bb67b1ee0f1dd3ca4d13def</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/usr.bin/grep/Makefile</description>
        <pubDate>Tue, 14 Dec 2021 15:31:30 +0100</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f850fd249668fa82a315353c6d5a147c1b305612 - grep: fix LINKS in Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#f850fd249668fa82a315353c6d5a147c1b305612</link>
        <description>grep: fix LINKS in Makefilezstdegrep was listed twice, instead of zstdfgrepPull Request:	https://github.com/freebsd/freebsd-src/pull/450

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Sun, 17 Jan 2021 23:03:04 +0100</pubDate>
        <dc:creator>Martin Tournoij &lt;martin@arp242.net&gt;</dc:creator>
    </item>
<item>
        <title>8aff76fb37b58a74832831ac1c54a013a64b35e7 - build: remove the option to build gnugrep</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#8aff76fb37b58a74832831ac1c54a013a64b35e7</link>
        <description>build: remove the option to build gnugrepUnconditionally install bsdgrep as grep, bootstrap or not. Remove allbuild glue and stop installing both gnugrep and libgnuregex now thatall consumers of the latter are gone.Relnotes:	yesDifferential Revision:	https://reviews.freebsd.org/D27732

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Tue, 22 Dec 2020 22:36:40 +0100</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6e5a5dc03d3f618775a72adc08de31a11ab20e9b - bsdgrep: don&apos;t link against libregex for bootstrap</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#6e5a5dc03d3f618775a72adc08de31a11ab20e9b</link>
        <description>bsdgrep: don&apos;t link against libregex for bootstrapr368355 removed the GNU_GREP_COMPAT knob (off by default) and forgot thatbsdgrep may be built/used for bootstrap on some systems.All base uses should strive to use only POSIX-compliant expressions anywaysand we haven&apos;t had libregex by default here up to this point, so just don&apos;tdo that if we&apos;re bootstrapping.Note that the resulting binary has the wrong `grep -V` information as itfalsely claims to be GNU compatible, but it is only for bootstrap.Reported by:	GitHub cross-builds via yuripv

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Sun, 06 Dec 2020 18:45:42 +0100</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7c2f310f6dd8cf0ed249933eea7c643f2c311745 - Retire GNU_GREP_COMPAT knob</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#7c2f310f6dd8cf0ed249933eea7c643f2c311745</link>
        <description>Retire GNU_GREP_COMPAT knobThis was introduced and then disabled by default primarily to avoid dealingwith bugs in libgnuregex. rS363823 switched to using libregex for it, solet&apos;s just rip the option out now so we can make sure we&apos;re getting testedwith libregex via bsdgrep.Reviewed by:	emasteDifferential Revision:	https://reviews.freebsd.org/D27476

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Sat, 05 Dec 2020 03:21:58 +0100</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>440cec3faf778469b36b998bb52aab7fbc43eae3 - MFH</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#440cec3faf778469b36b998bb52aab7fbc43eae3</link>
        <description>MFHSponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Wed, 12 Aug 2020 19:16:26 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e53daa1d6484f84ba0569bfe1e97fe09382ed399 - Merge ^/head r363989 through r364034.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#e53daa1d6484f84ba0569bfe1e97fe09382ed399</link>
        <description>Merge ^/head r363989 through r364034.

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Fri, 07 Aug 2020 20:14:41 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4f971ddf330c34c35c18a4698370413367c061dd - Always install usr.bin/grep as grep when bootstrapping</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#4f971ddf330c34c35c18a4698370413367c061dd</link>
        <description>Always install usr.bin/grep as grep when bootstrappingWe have to bootstrap grep when cross-building from macOS/Linux.

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Fri, 07 Aug 2020 18:04:01 +0200</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e383ec74e572975ccda09be4c6bb028b50f6d2c6 - Merge ^/head r363739 through r363986.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#e383ec74e572975ccda09be4c6bb028b50f6d2c6</link>
        <description>Merge ^/head r363739 through r363986.

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Thu, 06 Aug 2020 21:34:55 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cab7d341dcd98138443bbdb51649f966093a3a84 - bsdgrep: switch to libregex for GNU_GREP_COMPAT</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#cab7d341dcd98138443bbdb51649f966093a3a84</link>
        <description>bsdgrep: switch to libregex for GNU_GREP_COMPATlibregex is incomplete, but it&apos;s a bit less buggy than the in-baselibgnuregex and mostly OK.While here, rename -DIWTH_GNU -&gt; -DWITH_GNU_COMPAT; the option impliesthat we&apos;re compatible with the GNU counterpart, not that we&apos;re including GNUanything.

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Tue, 04 Aug 2020 04:47:24 +0200</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>26e3f9681b94dd397ed0c163636ac05c036db3ca - Fix bsdgrep manpage clobbering grep(1) with default build options</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#26e3f9681b94dd397ed0c163636ac05c036db3ca</link>
        <description>Fix bsdgrep manpage clobbering grep(1) with default build optionsThe default build should install bsdgrep(1) and grep(1), with the latterbeing gnugrep(1). WITH_BSD_GREP flips this situation such that we havegnugrep(1) and grep(1), with the latter being bsdgrep(1).Changes to start installing the zgrep script out of usr.bin/grepinadvertently altered the default build such that grep(1) was beinginstalled, and it was bsdgrep(1). Correct the typo.Reported by:	bcranMFC after:	3 days

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Wed, 09 Jan 2019 03:47:07 +0100</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>30dc95029e879a2ca9be652999284f7728d99f70 - Remove NLS support from BSD grep</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#30dc95029e879a2ca9be652999284f7728d99f70</link>
        <description>Remove NLS support from BSD grepGNU grep as in actually in base does not have any translations supportcompiled in, so no functionnality loss.We do support 193 locales in base, we will never catch up on that number oftranslation with bsd grep.Removing NLS support make bsd grep consistent with the other binaries in basewhich are not translated, and also reduce a little bit the code.Reviewed by:	kevansApproved by:	kevansDiscussed with:	kevans @BSDCanDifferential Revision:	https://reviews.freebsd.org/D15682

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Thu, 07 Jun 2018 01:12:35 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a2584d1b34c54485330d2bba1983b708e52dc6d4 - bsdgrep: annihilate our in-tree TRE, previously disabled by default</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#a2584d1b34c54485330d2bba1983b708e52dc6d4</link>
        <description>bsdgrep: annihilate our in-tree TRE, previously disabled by defaultIt was an old TRE that had plenty of bugs and no performance gain overregex(3). I disabled it by default in r323615, and there was some confusionabout what the knob does- likely due to poor naming on my part- to the tuneof &quot;well, it sounds like it should speed things up&quot; (mentioned by multiplepeople).To compound this, I have no intention of maintaining a second regeximplementation. If someone would like to step up and volunteer to maintain alean-and-mean implementation for grep, this is OK, but we have very fewvolunteers to maintain even our primary regex implementation.

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Fri, 04 May 2018 05:13:25 +0200</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4a5b4207385cabd19d4123e949dcff01211d0c58 - Remove compression support from bsdgrep</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#4a5b4207385cabd19d4123e949dcff01211d0c58</link>
        <description>Remove compression support from bsdgrepCompression support is now handled by an external script, remove it from thebsdgrep(1) utility.This removes the support for -Z -J -X and -MNote: that it matches the changes in newer GNU grepReviewed by:	kevansApproved by:	kevansMFC after:	1 weekDifferential Revision:	https://reviews.freebsd.org/D15197

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Wed, 25 Apr 2018 16:40:15 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>612c330d85a4e48869c4f0307efe3f133969aa6c - Use a script wrapper for &lt;compress&gt;grep</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#612c330d85a4e48869c4f0307efe3f133969aa6c</link>
        <description>Use a script wrapper for &lt;compress&gt;grepImport the wrapper script from zstdgrep (written by wiz@netbsd.org)Modify it to support more than just zstd (adding support for gzip,lzma, xz and bzip2)Write a simple manpage dedicated for it.Only use that new wrapper both for gnu grep and bsd grepNext step will be removing code related to compression format from bsdgrepReviewed by:	kevansApproved by:	kevansMFC after:	1 weekDifferential Revision:	https://reviews.freebsd.org/D15193

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Wed, 25 Apr 2018 15:23:58 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1409e715e64d67b3093a889e63b33ef48e280ec8 - Merge ^/head r322398 through r322746.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#1409e715e64d67b3093a889e63b33ef48e280ec8</link>
        <description>Merge ^/head r322398 through r322746.

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Mon, 21 Aug 2017 13:56:47 +0200</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>82baa8db5e9cd91f5bea24a2a4c06a4a409b786d - MFhead@r322515</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#82baa8db5e9cd91f5bea24a2a4c06a4a409b786d</link>
        <description>MFhead@r322515

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Mon, 14 Aug 2017 21:28:49 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>188e46ab0332a7887da6f1eb5494d92076e3d31e - Add supporting changes for `Add limited sandbox capability to &quot;make check&quot;`</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.bin/grep/Makefile#188e46ab0332a7887da6f1eb5494d92076e3d31e</link>
        <description>Add supporting changes for `Add limited sandbox capability to &quot;make check&quot;`Non-tests/... changes:- Add HAS_TESTS= to Makefiles with libraries and programs to enable iteration  and propagate the appropriate environment down to *.test.mk.tests/... changes:- Add appropriate support Makefile.inc&apos;s to set HAS_TESTS in a minimal manner,  since tests/... is a special subdirectory tree compared to the others.MFC after:	2 monthsMFC with:	r322511Reviewed by:	arch (silence), testing (silence)Differential Revision:	D12014

            List of files:
            /freebsd/usr.bin/grep/Makefile</description>
        <pubDate>Mon, 14 Aug 2017 21:21:37 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
