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

            List of files:
            /freebsd-14.2/usr.sbin/editmap/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>525438ea - sendmail: Silence -Wdeprecated-non-prototype warnings.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#525438ea</link>
        <description>sendmail: Silence -Wdeprecated-non-prototype warnings.These will hopefully be fixed upstream eventually, but silence thewarnings until then.Reviewed by:	emasteDifferential Revision:	https://reviews.freebsd.org/D39518

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Tue, 18 Apr 2023 18:19:48 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>64a0982b - usr.sbin: normalize paths using SRCTOP-relative paths or :H when possible</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#64a0982b</link>
        <description>usr.sbin: normalize paths using SRCTOP-relative paths or :H when possibleThis simplifies make logic/outputMFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:38:03 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b791fbe6 - META MODE: Don&apos;t create .meta files when symlinking sources into the obj directory.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#b791fbe6</link>
        <description>META MODE: Don&apos;t create .meta files when symlinking sources into the obj directory.Tracking these leads to situations where meta mode will consider thefile to be out of date if /bin/sh or /bin/ln are newer than the sourcefile.  There&apos;s no reason for meta mode to do this as make is alreadyhandling the rebuild dependency fine.Sponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Wed, 25 Nov 2015 19:44:43 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c6db8143 - Convert usr.sbin to LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#c6db8143</link>
        <description>Convert usr.sbin to LIBADDReduce overlinking

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Tue, 25 Nov 2014 16:57:27 +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.sbin/editmap/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.sbin/editmap/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.sbin/editmap/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.sbin/editmap/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>71ccf092 - The last big commit: let usr.sbin/ use WARNS=6 by default.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#71ccf092</link>
        <description>The last big commit: let usr.sbin/ use WARNS=6 by default.

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Sat, 02 Jan 2010 11:07:44 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ee66677a - Remove kludges intended to support src trees with partial obj trees.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#ee66677a</link>
        <description>Remove kludges intended to support src trees with partial obj trees.Discussed with:	ru

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Fri, 10 Jun 2005 06:12:53 +0000</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dce6e651 - Remove MAINTAINER= lines from individual Makefiles in favor of the</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#dce6e651</link>
        <description>Remove MAINTAINER= lines from individual Makefiles in favor of theMAINTAINER file (which already had entries for sendmail).

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Mon, 07 Jul 2003 03:54:04 +0000</pubDate>
        <dc:creator>Gregory Neil Shapiro &lt;gshapiro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>40b36f54 - Add editmap, a new utility which comes with sendmail 8.12 for editing maps in</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/editmap/Makefile#40b36f54</link>
        <description>Add editmap, a new utility which comes with sendmail 8.12 for editing maps inplace.

            List of files:
            /freebsd-14.2/usr.sbin/editmap/Makefile</description>
        <pubDate>Sun, 17 Feb 2002 22:02:59 +0000</pubDate>
        <dc:creator>Gregory Neil Shapiro &lt;gshapiro@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
