<?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>ca2413d216197fd55f9363d6f65c641ff1aa3ec5 - librt/mq_getfd_np.3: Initial manual page</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#ca2413d216197fd55f9363d6f65c641ff1aa3ec5</link>
        <description>librt/mq_getfd_np.3: Initial manual pageThe mq_getfd_np function appeared in FreeBSD 11 with no documentation.This function dereferences the mqd_t as a pointer to an int.Relnotes:		yesMFC after:		3 daysReviewed by:		kib (previous), markj, ziaeeDifferential Revision:	https://reviews.freebsd.org/D43947

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Thu, 18 Dec 2025 23:12:32 +0100</pubDate>
        <dc:creator>Rick Parrish &lt;unitrunker@unitrunker.net&gt;</dc:creator>
    </item>
<item>
        <title>bba950fcaffc648d931da9dc07aeb85a1bf86cfc - librt: Hoist SHLIBDIR?= so it actually works</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#bba950fcaffc648d931da9dc07aeb85a1bf86cfc</link>
        <description>librt: Hoist SHLIBDIR?= so it actually workssrc.opts.mk includes bsd.own.mk, which sets SHLIBDIR, so having thisline after it does nothing. Hoist it like other libraries so it takeseffect.Reported by:	vishwinFixes:		2964804ef95c (&quot;librt: unbreak LIB32 build&quot;)

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Mon, 28 Aug 2023 21:27:50 +0200</pubDate>
        <dc:creator>Jessica Clarke &lt;jrtc27@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2964804ef95cb4fbf315dd1999a844af7786e3aa - librt: unbreak LIB32 build</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#2964804ef95cb4fbf315dd1999a844af7786e3aa</link>
        <description>librt: unbreak LIB32 buildFixes:		f006023b2281Reviewed by:	impDifferential Revision:	https://reviews.freebsd.org/D41616

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Mon, 28 Aug 2023 17:11:32 +0200</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f006023b2281e179374b56db196d03911fad3680 - librt: Chase 315ee00fa961, fixing boot</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#f006023b2281e179374b56db196d03911fad3680</link>
        <description>librt: Chase 315ee00fa961, fixing bootlibzfs uses librt as a dependency. Following 315ee00fa961 systems witha separate / and /usr will fail to load the libzfs.so library becauselibrt.so is not available due to the fact that /usr is not mounted yet.Install librt in /lib making it available to libzfs.Reported by:		emaste, impFixes:			315ee00fa961Differential Revision:	https://reviews.freebsd.org/D41612

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Mon, 28 Aug 2023 05:02:17 +0200</pubDate>
        <dc:creator>Cy Schubert &lt;cy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/lib/librt/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>6dbde50a7e48d4779dc7a7b0bc63f922aa5bcbf5 - pkgbase: Move librt to clibs</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#6dbde50a7e48d4779dc7a7b0bc63f922aa5bcbf5</link>
        <description>pkgbase: Move librt to clibslibrt implement the POSIX realtime extension library.Move it to clibs instead of utilities as a number of ports uses itso avoid a dependancy on FreeBSD-utilities.MFC after:	1 monthDifferential Revision:	https://reviews.freebsd.org/D30088

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Mon, 03 May 2021 10:12:26 +0200</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c8c62548bffb83f3d25e062929c45d66fea755f1 - Don&apos;t add -Winline for WARNS=6</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#c8c62548bffb83f3d25e062929c45d66fea755f1</link>
        <description>Don&apos;t add -Winline for WARNS=6This warning is very rarely useful (inline is a hint and not mandatory).This flag results in many warnings being printed when compiling C++code that uses the standard library with GCC.This flag was originally added in back in r94332 but the flag is a no-opin Clang (&quot;This diagnostic flag exists for GCC compatibility, and has noeffect in Clang&quot;). Removing it should make the GCC build output slightlymore readable.Reviewed By:	jrtc27, impDifferential Revision: https://reviews.freebsd.org/D29235

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Mon, 22 Mar 2021 12:55:45 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f993ed2fbd3c307200ed9a6351e649f0904b39c5 - Merge ^/head r351732 through r352104.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#f993ed2fbd3c307200ed9a6351e649f0904b39c5</link>
        <description>Merge ^/head r351732 through r352104.

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Mon, 09 Sep 2019 21:58:46 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4c1a82cea504df7a79f5bd8f7d0a41cacccff16e - pkgbase: Create a FreeBSD-utilities package and make it the default one</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#4c1a82cea504df7a79f5bd8f7d0a41cacccff16e</link>
        <description>pkgbase: Create a FreeBSD-utilities package and make it the default oneThe default package use to be FreeBSD-runtime but it should only containbinaries and libs enough to boot to single user and repair the system, itis also very handy to have a package that can be tranform to a small mfsroot.So create a new package named FreeBSD-utilities and make it the default one.Also move a few binaries and lib into this package when it make sense.Reviewed by:	bapt, gjbDifferential Revision:	https://reviews.freebsd.org/D21506

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Thu, 05 Sep 2019 16:15:47 +0200</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1409e715e64d67b3093a889e63b33ef48e280ec8 - Merge ^/head r322398 through r322746.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#1409e715e64d67b3093a889e63b33ef48e280ec8</link>
        <description>Merge ^/head r322398 through r322746.

            List of files:
            /freebsd/lib/librt/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/lib/librt/Makefile#82baa8db5e9cd91f5bea24a2a4c06a4a409b786d</link>
        <description>MFhead@r322515

            List of files:
            /freebsd/lib/librt/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/lib/librt/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/lib/librt/Makefile</description>
        <pubDate>Mon, 14 Aug 2017 21:21:37 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0275f9dbf73b01e9478dc7d6ab5fab4f8e077448 - Merge ^/head r321383 through r322397.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#0275f9dbf73b01e9478dc7d6ab5fab4f8e077448</link>
        <description>Merge ^/head r321383 through r322397.

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Fri, 11 Aug 2017 12:59:34 +0200</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d59ead01d83460374ba0e7be8096b1a66d737efb - MFhead@r321970</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#d59ead01d83460374ba0e7be8096b1a66d737efb</link>
        <description>MFhead@r321970

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Thu, 03 Aug 2017 07:30:11 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d511b20a693d77c1dc2491a62124471361eddd8e - Add HAS_TESTS to all Makefiles that are currently using the</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#d511b20a693d77c1dc2491a62124471361eddd8e</link>
        <description>Add HAS_TESTS to all Makefiles that are currently using the`SUBDIR.${MK_TESTS}+= tests` idiom.This is a follow up to r321912.

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 10:50:42 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>46b37aa2c4068c1a237b0a7e61b8c2f953b3708c - MFhead@r321912</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#46b37aa2c4068c1a237b0a7e61b8c2f953b3708c</link>
        <description>MFhead@r321912

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 10:38:36 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4b330699f819a81d8e34d471225143ffeb321855 - Convert traditional ${MK_TESTS} conditional idiom for including test</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#4b330699f819a81d8e34d471225143ffeb321855</link>
        <description>Convert traditional ${MK_TESTS} conditional idiom for including testdirectories to SUBDIR.${MK_TESTS} idiomThis is being done to pave the way for future work (and homogenity) in^/projects/make-check-sandbox .No functional change intended.MFC after:	1 weeks

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 10:35:51 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9b3ece1c2eb92a881cb2553271e123382bfe31c1 - MFhead@r313243</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#9b3ece1c2eb92a881cb2553271e123382bfe31c1</link>
        <description>MFhead@r313243

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Sat, 04 Feb 2017 19:06:09 +0100</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a4aa656aa587a4bad15e15bf45e149e176c22293 - Merge ^/head r312309 through r312623.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#a4aa656aa587a4bad15e15bf45e149e176c22293</link>
        <description>Merge ^/head r312309 through r312623.

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Sun, 22 Jan 2017 17:05:13 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bf51ed485e305d3d9703f23bab8b8b6fafdbc7b0 - Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/librt/Makefile#bf51ed485e305d3d9703f23bab8b8b6fafdbc7b0</link>
        <description>Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesThis implifies pathing in make/displayed outputMFC after:    3 weeksSponsored by: Dell EMC Isilon

            List of files:
            /freebsd/lib/librt/Makefile</description>
        <pubDate>Fri, 20 Jan 2017 05:36:06 +0100</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
