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

            List of files:
            /freebsd-14.2/usr.bin/compile_et/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>a30235a4 - pkgbase: Create a FreeBSD-kerberos package</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#a30235a4</link>
        <description>pkgbase: Create a FreeBSD-kerberos packageThis allows users to install or not kerberos related utilitiesand libs.Differential Revision:	https://reviews.freebsd.org/D31801

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Thu, 02 Sep 2021 04:09:15 +0000</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a35f04fb - Adopt SRCTOP in usr.bin</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#a35f04fb</link>
        <description>Adopt SRCTOP in usr.binPrefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/fooover ${.CURDIR}/../foo for paths in Makefiles.Differential Revision:	https://reviews.freebsd.org/D9932Sponsored by:		NetflixSilence on:		arch@ (twice)

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sun, 12 Mar 2017 18:58:44 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3e11bd9e - Convert to usr.bin/ to LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#3e11bd9e</link>
        <description>Convert to usr.bin/ to LIBADDReduce overlinking

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 14:29:10 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5608fd23 - Revert r267233 for now. PIE support needs to be reworked.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#5608fd23</link>
        <description>Revert r267233 for now. PIE support needs to be reworked.1. 50+% of NO_PIE use is fixed by adding -fPIC to INTERNALLIB and other   build-only utility libraries.2. Another 40% is fixed by generating _pic.a variants of various libraries.3. Some of the NO_PIE use is a bit absurd as it is disabling PIE (and ASLR)   where it never would work anyhow, such as csu or loader. This suggests   there may be better ways of adding support to the tree. Many of these   cases can be fixed such that -fPIE will work but there is really no   reason to have it in those cases.4. Some of the uses are working around hacks done to some Makefiles that are   really building libraries but have been using bsd.prog.mk because the code   is cleaner. Had they been using bsd.lib.mk then NO_PIE would not have   been needed.We likely do want to enable PIE by default (opt-out) for non-tree consumers(such as ports). For in-tree though we probably want to only enable PIE(opt-in) for common attack targets such as remote service daemons and setuidutilities. This is also a great performance compromise since ASLR is expectedto reduce performance. As such it does not make sense to enable it in allutilities such as ls(1) that have little benefit to having it enabled.Reported by:	kib

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Tue, 19 Aug 2014 15:04:32 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>864c53ea - In preparation for ASLR [1] support add WITH_PIE to support building with -fPIE.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#864c53ea</link>
        <description>In preparation for ASLR [1] support add WITH_PIE to support building with -fPIE.This is currently an opt-in build flag. Once ASLR support is ready and stableit should changed to opt-out and be enabled by default along with ASLR.Each application Makefile uses opt-out to ensure that ASLR will be enabled bydefault in new directories when the system is compiled with PIE/ASLR. [2]Mark known build failures as NO_PIE for now.The only known runtime failure was rtld.[1] http://www.bsdcan.org/2014/schedule/events/452.en.htmlSubmitted by:		Shawn Webb &lt;lattera@gmail.com&gt;Discussed between:	des@ and Shawn Webb [2]

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sun, 08 Jun 2014 17:29:31 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b7946da9 - Build usr.bin/ with WARNS=6 by default.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#b7946da9</link>
        <description>Build usr.bin/ with WARNS=6 by default.Also add some missing $FreeBSD$ to keep svn happy.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 10:27:05 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f329a151 - Style: move .PATH to where it belongs.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#f329a151</link>
        <description>Style: move .PATH to where it belongs.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Fri, 14 Oct 2005 15:50:22 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d8f5c868 - Build this from contrib/ now.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#d8f5c868</link>
        <description>Build this from contrib/ now.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 04 Sep 1999 09:52:36 +0000</pubDate>
        <dc:creator>Mark Murray &lt;markm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c3aac50f - $Id$ -&gt; $FreeBSD$</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#c3aac50f</link>
        <description>$Id$ -&gt; $FreeBSD$

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 28 Aug 1999 01:08:13 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2cf0660c - Simplified using new yacc rules and by not generating y.tab.h.  The</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#2cf0660c</link>
        <description>Simplified using new yacc rules and by not generating y.tab.h.  Thelex source is still handled bogusly.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Mon, 04 May 1998 18:40:18 +0000</pubDate>
        <dc:creator>Bruce Evans &lt;bde@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e1d3476a - Don&apos;t use beforedepend to break things.  The usual fix of putting</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#e1d3476a</link>
        <description>Don&apos;t use beforedepend to break things.  The usual fix of puttinggenerated sources in SRCS breaks because compile_et uses an evilinclude of one .c file in another.  Use a worse fix.  PerhapsDPSRCS is useful after all.Don&apos;t put *.y in SRCS.  Put the generated file in SRCS instead.This fixes incomplete dependencies (mkdep can&apos;t work on *.y).Don&apos;t override the default .l.c rule.  Just use LFLAGS.Fixed some style bugs.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Fri, 20 Mar 1998 16:21:39 +0000</pubDate>
        <dc:creator>Bruce Evans &lt;bde@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c115df18 - Revert $FreeBSD$ to $Id$</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#c115df18</link>
        <description>Revert $FreeBSD$ to $Id$

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 22 Feb 1997 19:58:13 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1130b656 - Make the long-awaited change from $Id$ to $FreeBSD$</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#1130b656</link>
        <description>Make the long-awaited change from $Id$ to $FreeBSD$This will make a number of things easier in the future, as well as (finally!)avoiding the Id-smashing problem which has plagued developers for so long.Boy, I&apos;m glad we&apos;re not using sup anymore.  This update would have beeninsane otherwise.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Tue, 14 Jan 1997 07:20:47 +0000</pubDate>
        <dc:creator>Jordan K. Hubbard &lt;jkh@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>819ab547 - Add y.tab.h to CLEANFILES.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#819ab547</link>
        <description>Add y.tab.h to CLEANFILES.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Thu, 09 Feb 1995 00:24:00 +0000</pubDate>
        <dc:creator>Jordan K. Hubbard &lt;jkh@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d8baa34b - Fix include directive bobble.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#d8baa34b</link>
        <description>Fix include directive bobble.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 14 Jan 1995 22:30:32 +0000</pubDate>
        <dc:creator>Garrett Wollman &lt;wollman@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5e914d3b - Upgrade to latest released SIPB version I can find.  (Unfortunately, the</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#5e914d3b</link>
        <description>Upgrade to latest released SIPB version I can find.  (Unfortunately, theoriginal releases were not numbered.)

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 14 Jan 1995 22:29:34 +0000</pubDate>
        <dc:creator>Garrett Wollman &lt;wollman@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3c713196 - Slight makefile cleanup.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#3c713196</link>
        <description>Slight makefile cleanup.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Sat, 14 Jan 1995 20:58:00 +0000</pubDate>
        <dc:creator>Garrett Wollman &lt;wollman@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>60643d37 - Initial import of eBones.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.bin/compile_et/Makefile#60643d37</link>
        <description>Initial import of eBones.(Including all changes for FreeBSD - importing the original eBones distributionwould be too complex at this stage, since I don&apos;t have access to Piero&apos;s CVS.)(If you want to include eBones in your system, don&apos;t forget to includeMAKE_EBONES in /etc/make.conf.)(This stuff is now also suppable from braae.ru.ac.za.)Bones originally from MIT SIPB.Original port to FreeBSD 1.x  by Piero Serini.Moved to FreeBSD 2.0 by Doug Rabson and Geoff Rehmet.Nice bug fixes from Doug Rabson.

            List of files:
            /freebsd-14.2/usr.bin/compile_et/Makefile</description>
        <pubDate>Fri, 30 Sep 1994 14:50:09 +0000</pubDate>
        <dc:creator>Geoff Rehmet &lt;csgr@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
