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

            List of files:
            /freebsd-14.2/libexec/mail.local/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/libexec/mail.local/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/libexec/mail.local/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>a251f9dc - libexec: normalize paths using SRCTOP-relative paths or :H when possible</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#a251f9dc</link>
        <description>libexec: 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/libexec/mail.local/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:28:03 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9c4fa87c - Create a package for sendmail(8).</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#9c4fa87c</link>
        <description>Create a package for sendmail(8).Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Mon, 08 Feb 2016 18:41:46 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@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/libexec/mail.local/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/libexec/mail.local/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>ee5a34ec - Convert to LIBADD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#ee5a34ec</link>
        <description>Convert to LIBADDReduce overlinking

            List of files:
            /freebsd-14.2/libexec/mail.local/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>5608fd23 - Revert r267233 for now. PIE support needs to be reworked.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/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/libexec/mail.local/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/libexec/mail.local/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/libexec/mail.local/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>a7449e3c - Since clang 3.2 now has an option to suppress warnings about implicitly</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#a7449e3c</link>
        <description>Since clang 3.2 now has an option to suppress warnings about implicitlypromoted K&amp;R parameters, remove the workarounds added for sendmailcomponents in r228558.MFC after:	1 week

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Sat, 16 Feb 2013 20:17:31 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>07b202a8 - Define several extra macros in bsd.sys.mk and sys/conf/kern.pre.mk, to</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#07b202a8</link>
        <description>Define several extra macros in bsd.sys.mk and sys/conf/kern.pre.mk, toget rid of testing explicitly for clang (using ${CC:T:Mclang}) inindividual Makefiles.Instead, use the following extra macros, for use with clang:- NO_WERROR.clang       (disables -Werror)- NO_WCAST_ALIGN.clang  (disables -Wcast-align)- NO_WFORMAT.clang	(disables -Wformat and friends)- CLANG_NO_IAS		(disables integrated assembler)- CLANG_OPT_SMALL	(adds flags for extra small size optimizations)As a side effect, this enables setting CC/CXX/CPP in src.conf instead ofmake.conf!  For clang, use the following:CC=clangCXX=clang++CPP=clang-cppMFC after:	2 weeks

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Tue, 28 Feb 2012 18:30:18 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9e277ed8 - Fix typos in the comments about clang warnings in several</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#9e277ed8</link>
        <description>Fix typos in the comments about clang warnings in severalsendmail-related Makefiles.Spotted by:	arundelMFC after:	1 week

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Fri, 16 Dec 2011 17:02:25 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4df50ce8 - Unfortunately, clang gives warnings about sendmail code that cannot be</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#4df50ce8</link>
        <description>Unfortunately, clang gives warnings about sendmail code that cannot beturned off yet.  Since this is contrib code, and we don&apos;t really careabout the warnings, just turn make them non-fatal for now.MFC after:	1 week

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Fri, 16 Dec 2011 15:58:38 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@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/mail.local/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/mail.local/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>ee66677a - Remove kludges intended to support src trees with partial obj trees.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#ee66677a</link>
        <description>Remove kludges intended to support src trees with partial obj trees.Discussed with:	ru

            List of files:
            /freebsd-14.2/libexec/mail.local/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/libexec/mail.local/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/libexec/mail.local/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>095dae9d - Update build infrastructure for sendmail 8.12.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#095dae9d</link>
        <description>Update build infrastructure for sendmail 8.12.

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Sun, 17 Feb 2002 22:05:07 +0000</pubDate>
        <dc:creator>Gregory Neil Shapiro &lt;gshapiro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9357f412 - Lock down with WFORMAT?=1, with overrides in the subdirectories which</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#9357f412</link>
        <description>Lock down with WFORMAT?=1, with overrides in the subdirectories whichare not yet warning-clean.  Tested on i386 and alpha.

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Mon, 04 Feb 2002 02:33:51 +0000</pubDate>
        <dc:creator>Kris Kennaway &lt;kris@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e5b5c66b - - Backout botched attempt to intoduce MANSECT feature.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#e5b5c66b</link>
        <description>- Backout botched attempt to intoduce MANSECT feature.- MAN[1-9] -&gt; MAN.

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Mon, 26 Mar 2001 14:22:12 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>020ee2dc - Set the default manual section for libexec/ to 8.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#020ee2dc</link>
        <description>Set the default manual section for libexec/ to 8.

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Tue, 20 Mar 2001 18:10:13 +0000</pubDate>
        <dc:creator>Ruslan Ermilov &lt;ru@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d1ba25f4 - Add a MAINTAINER= line so people know who to blame</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/libexec/mail.local/Makefile#d1ba25f4</link>
        <description>Add a MAINTAINER= line so people know who to blame

            List of files:
            /freebsd-14.2/libexec/mail.local/Makefile</description>
        <pubDate>Thu, 26 Oct 2000 23:02:36 +0000</pubDate>
        <dc:creator>Gregory Neil Shapiro &lt;gshapiro@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
