<?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/usr.sbin/ac/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/usr.sbin/ac/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/usr.sbin/ac/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/usr.sbin/ac/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>0c6b2a91795167203f442a84aac2570397226e56 - pkgbase: Put accounting utilities in the acct package</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#0c6b2a91795167203f442a84aac2570397226e56</link>
        <description>pkgbase: Put accounting utilities in the acct package

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Thu, 21 Jul 2022 17:09:34 +0200</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e477abf734cc777a55286bfbd6b80a6760c96acf - MFC @ r241285</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#e477abf734cc777a55286bfbd6b80a6760c96acf</link>
        <description>MFC @ r241285

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Tue, 27 Nov 2012 19:38:50 +0100</pubDate>
        <dc:creator>Alexander Motin &lt;mav@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a10c6f5544ccbab911d786d4b50d50cabd6bb5ab - IFC @ r242684</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#a10c6f5544ccbab911d786d4b50d50cabd6bb5ab</link>
        <description>IFC @ r242684

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Sun, 11 Nov 2012 04:26:14 +0100</pubDate>
        <dc:creator>Neel Natu &lt;neel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>23090366f729c56cab62de74c7a51792357e98a9 - Sync from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#23090366f729c56cab62de74c7a51792357e98a9</link>
        <description>Sync from head

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Sun, 04 Nov 2012 03:52:03 +0100</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>24bf3585ae49955b5d065afd9ae3b8aabe1f04a1 - Merge head r233826 through r240095.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#24bf3585ae49955b5d065afd9ae3b8aabe1f04a1</link>
        <description>Merge head r233826 through r240095.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Tue, 04 Sep 2012 21:49:37 +0200</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b42c08d3c4e60c9104118690267238aff9286d9b - Massively refactor ac(8).</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#b42c08d3c4e60c9104118690267238aff9286d9b</link>
        <description>Massively refactor ac(8).- Use queue(3) -- not some homegrown implementation of linked lists.- Rename structures to _entry, as they are entries in the linked list --  not the lists themselves.- Don&apos;t store entire copies of struct utmpx in utmpx_entry, but only the  members we&apos;re interested in. Large fields such as hostnames are not  needed during the execution of the program.- Give structure members useful names, instead of `name&apos;.- While there, use struct timevals instead of time_t&apos;s internally. This  is not strictly useful, but while we&apos;re at it...- Mark stuff static.- Add missing const keywords.- Remove unneeded prototypes.- Remove workaround for sparc64-specific utmp problems. These don&apos;t  apply to utmpx.- Don&apos;t discard entries when timestamps are not monotone. This shouldn&apos;t  ever happen with utmpx, but discarding them is a bit too harsh.- Remove debug code. We nowadays have `getent utmpx&apos;, which can be used  to analyze logfiles in depth.- Use proper uppercasing/periods in comments.- Print output of `ac -p&apos; sorted alphabetically, instead of first  occurrence.- Properly check against pts/* instead of tty[PQRSpqrs]* to determine  whether a TTY is a pseudo-terminal.MFC after:	1 month

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Thu, 30 Aug 2012 18:45:27 +0200</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>25faff346c8453b8248f99c7cff71708262faa37 - MFtbemd:</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#25faff346c8453b8248f99c7cff71708262faa37</link>
        <description>MFtbemd:Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you wantto test of all the CPUs of a given family conform.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Tue, 24 Aug 2010 00:24:11 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1a0fda2b547365c9453523592a445dfe21266d4b - IFH@204581</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#1a0fda2b547365c9453523592a445dfe21266d4b</link>
        <description>IFH@204581

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Thu, 04 Mar 2010 14:35:57 +0100</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9199c09a159c4e3e98c212d4eec1edc5252d9e33 - Merge from head at r201628.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#9199c09a159c4e3e98c212d4eec1edc5252d9e33</link>
        <description>Merge from head at r201628.# This hasn&apos;t been tested, and there are at least three bad commits# that need to be backed out before the branch will be stable again.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Wed, 06 Jan 2010 06:58:07 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>71ccf09269546d398fa847168fc74c22d6338a62 - The last big commit: let usr.sbin/ use WARNS=6 by default.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#71ccf09269546d398fa847168fc74c22d6338a62</link>
        <description>The last big commit: let usr.sbin/ use WARNS=6 by default.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 12:07:44 +0100</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c38a8579696830adacaa8e9842a4d445b458cb24 - Compile &apos;ac&apos; with DEBUG when arch==sparc64.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#c38a8579696830adacaa8e9842a4d445b458cb24</link>
        <description>Compile &apos;ac&apos; with DEBUG when arch==sparc64.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Mon, 08 Mar 2004 21:01:34 +0100</pubDate>
        <dc:creator>Garance A Drosehn &lt;gad@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>54b60d7e1528658e03c9abd5d1984f7ebd1af70b - Fix indentation broken in previous __P removal.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#54b60d7e1528658e03c9abd5d1984f7ebd1af70b</link>
        <description>Fix indentation broken in previous __P removal.Grumbled about by: bde

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Fri, 12 Jul 2002 00:18:26 +0200</pubDate>
        <dc:creator>Alfred Perlstein &lt;alfred@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>90e655ea4e3750a48b8b350adb823f0ace818f21 - Perform a major cleanup of the usr.sbin Makefiles.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#90e655ea4e3750a48b8b350adb823f0ace818f21</link>
        <description>Perform a major cleanup of the usr.sbin Makefiles.These are not perfectly in agreement with each other style-wise, but theyare orders of orders of magnitude more consistent style-wise than before.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Fri, 20 Jul 2001 08:20:32 +0200</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dfe60c7914683c0ec1bda29b9708371e06ed86dc - Constify and set WARNS=2.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#dfe60c7914683c0ec1bda29b9708371e06ed86dc</link>
        <description>Constify and set WARNS=2.Submitted by:	Mike Barcroft &lt;mike@q9media.com&gt;Reviewed by:	md5(1)

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Sun, 24 Jun 2001 20:41:30 +0200</pubDate>
        <dc:creator>Dima Dorfman &lt;dd@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>345e52e74228df732bb0c9732aca0fc0404c360d - - Backout botched attempt to introduce MANSECT feature.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#345e52e74228df732bb0c9732aca0fc0404c360d</link>
        <description>- Backout botched attempt to introduce MANSECT feature.- MAN[1-9] -&gt; MAN.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Mon, 26 Mar 2001 16:42:20 +0200</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c73e22c3d47a3cff43c30a39e6aa4692e07316c8 - Set the default manual section for usr.sbin/ to 8.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#c73e22c3d47a3cff43c30a39e6aa4692e07316c8</link>
        <description>Set the default manual section for usr.sbin/ to 8.

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Tue, 20 Mar 2001 19:17:26 +0100</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>97d92980a96a50750844f420cc225ddf918f0699 - $Id$ -&gt; $FreeBSD$</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#97d92980a96a50750844f420cc225ddf918f0699</link>
        <description>$Id$ -&gt; $FreeBSD$

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Sat, 28 Aug 1999 03:35:59 +0200</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>476602a9d0b9041b42a108349dc58a4ca6bf4223 - Revert $FreeBSD$ to $Id$</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/usr.sbin/ac/Makefile#476602a9d0b9041b42a108349dc58a4ca6bf4223</link>
        <description>Revert $FreeBSD$ to $Id$

            List of files:
            /freebsd/usr.sbin/ac/Makefile</description>
        <pubDate>Sat, 22 Feb 1997 17:15:28 +0100</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
