<?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 2015</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/libexec/ulog-helper/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>ee5a34ec - Convert to LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#ee5a34ec</link>
        <description>Convert to LIBADDReduce overlinking

            List of files:
            /freebsd-14.2/libexec/ulog-helper/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 21:18:18 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3bdf7758 - NO_MAN= has been deprecated in favor of MAN= for some time, go ahead</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#3bdf7758</link>
        <description>NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn&apos;t a simple mechanical change, and will beaddressed in a future commit.

            List of files:
            /freebsd-14.2/libexec/ulog-helper/Makefile</description>
        <pubDate>Sun, 13 Apr 2014 05:21:56 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0ea9a5dd - Minor cleanups to ulog-helper:</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#0ea9a5dd</link>
        <description>Minor cleanups to ulog-helper:- Remove unneeded linking against libmd. libulog depends on this  library, but the ulog-helper tool itself does not.- Change the comment at the top to mention utmpx instead of utmp, wtmp  and lastlog.- Simply use user_from_uid() to translate to a username string.- Put variable declarations together.

            List of files:
            /freebsd-14.2/libexec/ulog-helper/Makefile</description>
        <pubDate>Tue, 21 Jun 2011 17:59:51 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c59ee18a - Fixed static linkage.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#c59ee18a</link>
        <description>Fixed static linkage.

            List of files:
            /freebsd-14.2/libexec/ulog-helper/Makefile</description>
        <pubDate>Fri, 26 Feb 2010 09:41:16 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1100c001 - Make WARNS=6 the default for libexec/.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#1100c001</link>
        <description>Make WARNS=6 the default for libexec/.Just like bin/ and sbin/, I think setting WARNS to the highest valuepossible will make it more attractive for people to fix warnings.- The WARNS variable is set in the Makefile in the directory of the  application itself, making it more likely that it will be removed out  of curiosity to see what happens.- New applications will most likely build with WARNS=6 out of the box,  because the author would more likely fix the warnings during  development than lower WARNS.Unfortunately almost all apps in libexec require a lowered value ofWARNS.

            List of files:
            /freebsd-14.2/libexec/ulog-helper/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 09:50:19 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2208eadf - Add a new library: libulog.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/ulog-helper/Makefile#2208eadf</link>
        <description>Add a new library: libulog.One of the things I really want to do, is to get rid of the limitationsof our current utmp(5) mechanism:- It only allows 8 byte TTY device names.- The hostname only allows 16 bytes of storage.I&apos;m not a big fan of &lt;utmpx.h&gt;, but I think we should at least try toadd parts of it. Unfortunately we cannot implement &lt;utmpx.h&gt;, because wemiss various fields, such as ut_id, ut_pid, etc. The API provided bylibulog shares some similarities with &lt;utmpx.h&gt;, so it shouldn&apos;t be toohard to port these applications eventually. In most simple cases, itshould just be a matter of removing the ulog_ prefix everywhere.As a bonus, it also implements a function called ulog_login_pseudo(),which allows unprivileged applications to write log entries, providedthey have a valid file descriptor to a pseudo-terminal master device.libulog will allow a smoother transition to a new file format by addinga library interface to deal with utmp/wtmp/lastlog files. I initiallythought about adding the functionality to libutil, but because I&apos;m notplanning on keeping this library around forever, we&apos;d better keep itseparated.Next items on the todo list:1. Port applications in the base system (and ports) to libulog, instead   of letting them use &lt;utmp.h&gt;.2. Remove &lt;utmp.h&gt;, implement &lt;utmpx.h&gt; and reimplement this library on   top.3. Port as many applications as possible back to &lt;utmpx.h&gt;.

            List of files:
            /freebsd-14.2/libexec/ulog-helper/Makefile</description>
        <pubDate>Thu, 03 Dec 2009 15:48:24 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
