<?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>c5e0b035 - libutil: move ftime to libutil</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#c5e0b035</link>
        <description>libutil: move ftime to libutilIt seems that there are still some applications that use ftime(3)(for example, science/siconos and sysutils/lcdproc). The issueis that we don&apos;t build libcompat as a shared library anymore.The easiest solution is to move it to libutil, until wedeprecate it for good.This solution was proposed by kib@ inhttps://bugs.freebsd.org/bugzilla/show_bug.cgi?id=257789.PR:		257789MFC after:	1 monthReviewed by:	kib (ages ago)Differential Revision:	https://reviews.freebsd.org/D39994(cherry picked from commit bb421be6c1174fad837973acc5e4a7bade4489db)

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Wed, 29 May 2024 12:32:16 +0000</pubDate>
        <dc:creator>Mariusz Zaborski &lt;oshogbo@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/lib/libcompat/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>6387091e - Use __SCSSID() for SCCS IDs.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#6387091e</link>
        <description>Use __SCSSID() for SCCS IDs.While here, fix $FreeBSD$ ID in ftime.c to use __FBSDID instead of a staticarray.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Sun, 10 Jun 2018 02:34:41 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>85626903 - Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#85626903</link>
        <description>Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesThis simplifies pathing in make/displayed outputMFC after:    3 weeksSponsored by: Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Fri, 20 Jan 2017 04:52:00 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a70cba95 - First pass through library packaging.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#a70cba95</link>
        <description>First pass through library packaging.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Thu, 04 Feb 2016 21:16:35 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>29b63864 - Remove unneeded functions from libcompat.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#29b63864</link>
        <description>Remove unneeded functions from libcompat.Erwin fired up a ports build a couple of weeks ago and it seems thefollowing functions are not used by any of the 20k ports we have, whichmakes me believe they don&apos;t have any purpose. Just remove them.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Fri, 06 Aug 2010 20:13:36 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>763ed733 - Trim down libcompat by removing &lt;regexp.h&gt;.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#763ed733</link>
        <description>Trim down libcompat by removing &lt;regexp.h&gt;.Erwin ran an exp-run with libcompat and &lt;regexp.h&gt; removed. It turns outthe regexp library is almost entirely unused. In fact, it looks like itis sometimes used by accident. Because these function names clash withlibc&apos;s &lt;regex.h&gt;, some application use both &lt;regex.h&gt; and libcompat,which means they link against the wrong regex library.This commit removes the regexp library and reimplements re_comp() andre_exec() using &lt;regex.h&gt;. It seems the grammar of the regularexpressions accepted by these functions is similar to POSIX EREs.After this commit, 1 low-profile port will be broken, but the maintaineralready has a patch for it sitting in his mailbox.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Sun, 14 Mar 2010 10:18:58 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a6c03411 - Add warnings to &lt;regexp.h&gt; and &lt;sys/timeb.h&gt;.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#a6c03411</link>
        <description>Add warnings to &lt;regexp.h&gt; and &lt;sys/timeb.h&gt;.These header files only provide functionality that can be used incombination with libcompat. In order to prevent people from includingthem without any actual use (which happens a lot with &lt;sys/timeb.h&gt;),put a warning here to make people more aware.This means we have to lower WARNS for libcompat, which is no big deal.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Tue, 09 Mar 2010 21:01:12 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>daaf5759 - Build lib/ with WARNS=6 by default.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#daaf5759</link>
        <description>Build lib/ with WARNS=6 by default.Similar to libexec/, do the same with lib/. Make WARNS=6 the norm andlower it when needed.I&apos;m setting WARNS?=0 for secure/. It seems secure/ includes theMakefile.inc provided by lib/. I&apos;m not going to touch that directory.Most of the code there is contributed anyway.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 09:58:07 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>45792eb9 - Turn sgtty into a binary-only compatibility interface.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#45792eb9</link>
        <description>Turn sgtty into a binary-only compatibility interface.sgtty was the original interface to configure terminal attributes on myUNIX-like operating systems. It has been deprecated by the POSIX termiosinterface, which is implemented in almost any modern system.An advantage of turning this into a binary compatibility interface, isthat we can now eventually remove the COMPAT_43TTY switch from kernelconfigurations. This removes many ioctl()&apos;s from the TTY layer.While there, increase the __FreeBSD_version, which may be useful for thepeople working on the Ports tree.Reviewed by:	kibApproved by:	philip (mentor)

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Sat, 14 Jun 2008 10:42:18 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ab7a2947 - NODOCCOMPRESS -&gt; NO_DOCCOMPRESS</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#ab7a2947</link>
        <description>NODOCCOMPRESS -&gt; NO_DOCCOMPRESSNOINFO -&gt; NO_INFONOINFOCOMPRESS -&gt; NO_INFOCOMPRESSNOLINT -&gt; NO_LINTNOPIC -&gt; NO_PICNOPROFILE -&gt; NO_PROFILE

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Tue, 21 Dec 2004 09:33:47 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0b3cbc5c - Axe AINC.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#0b3cbc5c</link>
        <description>Axe AINC.Submitted by:	bde

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Tue, 01 Jul 2003 15:07:01 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6c84d0b1 - - Remove the lsearch() and lfind() functions and their manpage from</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#6c84d0b1</link>
        <description>- Remove the lsearch() and lfind() functions and their manpage from   the compatibility library libcompat. - Add new implementations of lsearch() and lfind() which conform to   IEEE Std 1003.1-2001 to libc.  Add a new manual page for them and   add them to the makefile. - Add function prototypes for lsearch() and lfind() to the search.h   header.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Wed, 16 Oct 2002 14:29:23 +0000</pubDate>
        <dc:creator>Robert Drehmel &lt;robert@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e768c1be - - Remove the old insque() and remque() functions and their manual</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#e768c1be</link>
        <description>- Remove the old insque() and remque() functions and their manual   page from the compatibility library. - Add new implementations of insque() and remque() which conform to   IEEE Std 1003.1-2001 to libc.  Add a new manual page for them and   connect them to the build. - Add the prototypes of insque() and remque() to the search.h   header.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Wed, 16 Oct 2002 14:00:46 +0000</pubDate>
        <dc:creator>Robert Drehmel &lt;robert@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4a558355 - MAN[1-9] -&gt; MAN.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#4a558355</link>
        <description>MAN[1-9] -&gt; MAN.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Tue, 27 Mar 2001 17:27:19 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8f4620bc - Aargh, the $FreeBSD$ check caused an inconsistent commit by rejecting</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#8f4620bc</link>
        <description>Aargh, the $FreeBSD$ check caused an inconsistent commit by rejectingthis makefile update which should have been together with the fileremoval.Removed vlimit.3 and vtimes.3.  Removed vlimit.c and vtimes.c fromthe &quot;MISSING&quot; list.  These were old variants of get/setrlimit() andgetrusage(), respectively, and were never implemented in FreeBSD.vlimit.3 referred to &lt;sys/vlimit.h&gt; which was removed recently.vtimes.3 referred to &lt;sys/vtimes.h&gt; which never existed in FreeBSD.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Wed, 22 Dec 1999 13:49:14 +0000</pubDate>
        <dc:creator>Bruce Evans &lt;bde@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ac1b417f - Cleanup. Make it compile on alpha.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#ac1b417f</link>
        <description>Cleanup. Make it compile on alpha.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Tue, 10 Nov 1998 06:35:24 +0000</pubDate>
        <dc:creator>Dima Ruban &lt;dima@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d7feb25b - Change ${MACHINE} into ${MACHINE_ARCH} to support MACHINE=pc98.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#d7feb25b</link>
        <description>Change ${MACHINE} into ${MACHINE_ARCH} to support MACHINE=pc98.

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Wed, 09 Sep 1998 11:27:33 +0000</pubDate>
        <dc:creator>KATO Takenori &lt;kato@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>63b7c21c - Move ftok() from libcompat to libc, so that it can be closer to its</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#63b7c21c</link>
        <description>Move ftok() from libcompat to libc, so that it can be closer to itsfriend shmget().PR:		closes misc/6763

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Wed, 10 Jun 1998 16:20:21 +0000</pubDate>
        <dc:creator>John Polstra &lt;jdp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b15443ba - Speedup in case locale not used</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libcompat/Makefile#b15443ba</link>
        <description>Speedup in case locale not used

            List of files:
            /freebsd-14.2/lib/libcompat/Makefile</description>
        <pubDate>Fri, 04 Apr 1997 20:10:53 +0000</pubDate>
        <dc:creator>Andrey A. Chernov &lt;ache@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
