<?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>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/tests/sys/mqueue/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>7cc42f6d25ef2e19059d088fa7d4853fe9afefb5 - Do a sweep and remove most WARNS=6 settings</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#7cc42f6d25ef2e19059d088fa7d4853fe9afefb5</link>
        <description>Do a sweep and remove most WARNS=6 settingsRepeating the default WARNS here makes it slightly more difficult toexperiment with default WARNS changes, e.g. if we did something absolutelybananas and introduced a WARNS=7 and wanted to try lifting the default tothat.Drop most of them; there is one in the blake2 kernel module, but I suspectit should be dropped -- the default WARNS in the rest of the build doesn&apos;tcurrently apply to kernel modules, and I haven&apos;t put too much thought intowhether it makes sense to make it so.

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Thu, 01 Oct 2020 03:10:51 +0200</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>242b24828472137ec4411826b86e753d49bd2c39 - Merge ^/head r306412 through r306905.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#242b24828472137ec4411826b86e753d49bd2c39</link>
        <description>Merge ^/head r306412 through r306905.

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Sun, 09 Oct 2016 15:30:57 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ddce1c3ddbfb773c2ee1343721f4e5bbe07186d0 - Export the mq_getfd_np() symbol from librt.so, which allows to get</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#ddce1c3ddbfb773c2ee1343721f4e5bbe07186d0</link>
        <description>Export the mq_getfd_np() symbol from librt.so, which allows to getfile descriptor for the given posix mqueue.  Export thetimer_oshandle_np() symbol to get ktimer id for the given posix timer.Requested by:	Lewis Donzis &lt;lew@perftech.com&gt;Reviewed by:	jillesDiscussed with:	kanSponsored by:	The FreeBSD FoundationMFC after:	1 week

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Sun, 02 Oct 2016 19:02:59 +0200</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>430f7286a566b1407c7b32ce13585caf5aa59b92 - Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installed</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#430f7286a566b1407c7b32ce13585caf5aa59b92</link>
        <description>Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installedafter r298107Summary of changes:- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that  namespacing is kept with FILES appropriately, and that this shouldn&apos;t need  to be repeated if the namespace changes -- only the definition of PACKAGE  needs to be changed- Allow PACKAGE to be overridden by callers instead of forcing it to always be  `tests`. In the event we get to the point where things can be split up  enough in the base system, it would make more sense to group the tests  with the blocks they&apos;re a part of, e.g. byacc with byacc-tests, etc- Remove PACKAGE definitions where possible, i.e. where FILES wasn&apos;t used  previously.- Remove unnecessary TESTSPACKAGE definitions; this has been elided into  bsd.tests.mk- Remove unnecessary BINDIRs used previously with ${PACKAGE}FILES;  ${PACKAGE}FILESDIR is now automatically defined in bsd.test.mk.- Fix installation of files under data/ subdirectories in lib/libc/tests/hash  and lib/libc/tests/net/getaddrinfo- Remove unnecessary .include &lt;bsd.own.mk&gt;s (some opportunistic cleanup)Document the proposed changes in share/examples/tests/tests/... via examplesso it&apos;s clear that ${PACKAGES}FILES is the suggested way forward in terms ofreplacing FILES. share/mk/bsd.README didn&apos;t seem like the appropriate methodof communicating that info.MFC after: never probablyX-MFC with: r298107PR: 209114Relnotes: yesTested with: buildworld, installworld, checkworld; buildworld, packageworldSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Thu, 05 May 2016 01:20:53 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>13caa468668019a6c93ed6ff65ab21c673b378cb - Merge the projects/release-pkg branch to head.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#13caa468668019a6c93ed6ff65ab21c673b378cb</link>
        <description>Merge the projects/release-pkg branch to head.This allows packaging the base system with pkg(8), includingbut not limited to providing the ability to provide upstreambinary update possibilities for non-tier-1 architectures.This merge is a requirement of the 11.0-RELEASE, and as such,thank you to everyone that has tested the project branch.Documentation in build(7) etc. is still somewhat sparse, butupdates to those parts will follow.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Sat, 16 Apr 2016 09:45:30 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2aa00a6001d7105eaf0d0288a441fa69f06fa534 - More &apos;tests&apos; package fixes.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#2aa00a6001d7105eaf0d0288a441fa69f06fa534</link>
        <description>More &apos;tests&apos; package fixes.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Wed, 03 Feb 2016 01:34:23 +0100</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b626f5a73a48f44a31a200291b141e1da408a2ff - MFH r289384-r293170</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#b626f5a73a48f44a31a200291b141e1da408a2ff</link>
        <description>MFH r289384-r293170Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Mon, 04 Jan 2016 20:19:48 +0100</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6c43c26fe0c128dfafbb1b2207912494493d2dd7 - Catch up with head.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#6c43c26fe0c128dfafbb1b2207912494493d2dd7</link>
        <description>Catch up with head.

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Fri, 04 Dec 2015 20:32:51 +0100</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>eacae6dc66aa881c102f11e2003174eea7e8af74 - Fix LDADD/DPADD that should be LIBADD.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#eacae6dc66aa881c102f11e2003174eea7e8af74</link>
        <description>Fix LDADD/DPADD that should be LIBADD.Sponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Fri, 04 Dec 2015 04:17:47 +0100</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c99bbcab5a5c2de91b55f36834214a5ee86c50cc - Catch up with head.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#c99bbcab5a5c2de91b55f36834214a5ee86c50cc</link>
        <description>Catch up with head.

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Wed, 02 Dec 2015 02:55:14 +0100</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>77a498d991bd3cde7aa96585f7865337aef91999 - Disable a couple of tests, perhaps temporarily, since they use private</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#77a498d991bd3cde7aa96585f7865337aef91999</link>
        <description>Disable a couple of tests, perhaps temporarily, since they use privatesymbols that are not exported from librt.

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Sun, 29 Nov 2015 07:16:25 +0100</pubDate>
        <dc:creator>Daniel Eischen &lt;deischen@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>11d38a5764295585a2472d5e861fa8abe1a11eb2 - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#11d38a5764295585a2472d5e861fa8abe1a11eb2</link>
        <description>Merge from headSponsored by:	Gandi.net

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Wed, 28 Oct 2015 12:58:18 +0100</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>324fd1ce05f53780fdbb8e13a09181aa2402ea86 - MFH to r289370</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#324fd1ce05f53780fdbb8e13a09181aa2402ea86</link>
        <description>MFH to r289370Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Thu, 15 Oct 2015 19:36:56 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>becbad1f6e18fec7c3bf286778a766ffca4457be - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#becbad1f6e18fec7c3bf286778a766ffca4457be</link>
        <description>Merge from head

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Tue, 13 Oct 2015 21:44:36 +0200</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a997b777b107c49f8d4d307bee9d25c8ff1a749a - Sync up with head up to r289211.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#a997b777b107c49f8d4d307bee9d25c8ff1a749a</link>
        <description>Sync up with head up to r289211.

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Tue, 13 Oct 2015 08:14:03 +0200</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b2d48be1bc7df45ddd13b143a160d0acb5a383c5 - Refactor the test/ Makefiles after recent changes to bsd.test.mk (r289158) and</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#b2d48be1bc7df45ddd13b143a160d0acb5a383c5</link>
        <description>Refactor the test/ Makefiles after recent changes to bsd.test.mk (r289158) andnetbsd-tests.test.mk (r289151)- Eliminate explicit OBJTOP/SRCTOP setting- Convert all ad hoc NetBSD test integration over to netbsd-tests.test.mk- Remove unnecessary TESTSDIR setting- Use SRCTOP where possible for clarityMFC after: 2 weeksSponsored by: EMC / Isilon Storage Divison

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Mon, 12 Oct 2015 10:16:03 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>416ba5c74546f32a993436a99516d35008e9f384 - Catch up with HEAD (r280229-r284686).</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#416ba5c74546f32a993436a99516d35008e9f384</link>
        <description>Catch up with HEAD (r280229-r284686).

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Mon, 22 Jun 2015 02:05:22 +0200</pubDate>
        <dc:creator>Navdeep Parhar &lt;np@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>98e0ffaefb0f241cda3a72395d3be04192ae0d47 - Merge sync of head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/tests/sys/mqueue/Makefile#98e0ffaefb0f241cda3a72395d3be04192ae0d47</link>
        <description>Merge sync of head

            List of files:
            /freebsd/tests/sys/mqueue/Makefile</description>
        <pubDate>Wed, 27 May 2015 03:19:58 +0200</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
