<?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 2025</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/tools/regression/environ/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/tools/regression/environ/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>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/tools/regression/environ/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/tools/regression/environ/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>2966d28c322dcfa4b9db2558da0b91839e7798b9 - Significantly reduce the memory leak as noted in BUGS section for</title>
        <link>http://opengrok.net:8080/history/src/tools/regression/environ/Makefile#2966d28c322dcfa4b9db2558da0b91839e7798b9</link>
        <description>Significantly reduce the memory leak as noted in BUGS section forsetenv(3) by tracking the size of the memory allocated instead of usingstrlen() on the current value.Convert all calls to POSIX from historic BSD API: - unsetenv returns an int. - putenv takes a char * instead of const char *. - putenv no longer makes a copy of the input string. - errno is set appropriately for POSIX.  Exceptions involve bad environ   variable and internal initialization code.  These both set errno to   EFAULT.Several patches to base utilities to handle the POSIX changes fromAndrey Chernov&apos;s previous commit.  A few I re-wrote to use setenv()instead of putenv().New regression module for tools/regression/environ to test thesefunctions.  It also can be used to test the performance.Bump __FreeBSD_version to 700050 due to API change.PR:		kern/99826Approved by:	wesApproved by:	re (kensmith)

            List of files:
            /src/tools/regression/environ/Makefile</description>
        <pubDate>Wed, 04 Jul 2007 00:00:41 +0000</pubDate>
        <dc:creator>Sean Farley &lt;scf@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/tools/regression/environ/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/tools/regression/environ/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>2966d28c322dcfa4b9db2558da0b91839e7798b9 - Significantly reduce the memory leak as noted in BUGS section for</title>
        <link>http://opengrok.net:8080/history/src/tools/regression/environ/Makefile#2966d28c322dcfa4b9db2558da0b91839e7798b9</link>
        <description>Significantly reduce the memory leak as noted in BUGS section forsetenv(3) by tracking the size of the memory allocated instead of usingstrlen() on the current value.Convert all calls to POSIX from historic BSD API: - unsetenv returns an int. - putenv takes a char * instead of const char *. - putenv no longer makes a copy of the input string. - errno is set appropriately for POSIX.  Exceptions involve bad environ   variable and internal initialization code.  These both set errno to   EFAULT.Several patches to base utilities to handle the POSIX changes fromAndrey Chernov&apos;s previous commit.  A few I re-wrote to use setenv()instead of putenv().New regression module for tools/regression/environ to test thesefunctions.  It also can be used to test the performance.Bump __FreeBSD_version to 700050 due to API change.PR:		kern/99826Approved by:	wesApproved by:	re (kensmith)

            List of files:
            /src/tools/regression/environ/Makefile</description>
        <pubDate>Wed, 04 Jul 2007 00:00:41 +0000</pubDate>
        <dc:creator>Sean Farley &lt;scf@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2966d28c322dcfa4b9db2558da0b91839e7798b9 - Significantly reduce the memory leak as noted in BUGS section for</title>
        <link>http://opengrok.net:8080/history/src/tools/regression/environ/Makefile#2966d28c322dcfa4b9db2558da0b91839e7798b9</link>
        <description>Significantly reduce the memory leak as noted in BUGS section forsetenv(3) by tracking the size of the memory allocated instead of usingstrlen() on the current value.Convert all calls to POSIX from historic BSD API: - unsetenv returns an int. - putenv takes a char * instead of const char *. - putenv no longer makes a copy of the input string. - errno is set appropriately for POSIX.  Exceptions involve bad environ   variable and internal initialization code.  These both set errno to   EFAULT.Several patches to base utilities to handle the POSIX changes fromAndrey Chernov&apos;s previous commit.  A few I re-wrote to use setenv()instead of putenv().New regression module for tools/regression/environ to test thesefunctions.  It also can be used to test the performance.Bump __FreeBSD_version to 700050 due to API change.PR:		kern/99826Approved by:	wesApproved by:	re (kensmith)

            List of files:
            /src/tools/regression/environ/Makefile</description>
        <pubDate>Wed, 04 Jul 2007 00:00:41 +0000</pubDate>
        <dc:creator>Sean Farley &lt;scf@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
