<?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>dd711b4a414c6ae262808a11b03ead77849d4961 - Move mailwrapper(8) examples from /etc/mail to /usr/share/examples.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#dd711b4a414c6ae262808a11b03ead77849d4961</link>
        <description>Move mailwrapper(8) examples from /etc/mail to /usr/share/examples.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sun, 05 Feb 2023 11:23:10 +0000</pubDate>
        <dc:creator>Sascha Wildner &lt;saw@online.de&gt;</dc:creator>
    </item>
<item>
        <title>fef7d5c7c737268396453f20ad42104230fa160e - Remove the NO_CRYPT build option.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#fef7d5c7c737268396453f20ad42104230fa160e</link>
        <description>Remove the NO_CRYPT build option.It has been broken for a long time without anyone complaining about andwe don&apos;t want to maintain it either.In-discussion-with: zrj

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sat, 18 Nov 2017 12:01:04 +0000</pubDate>
        <dc:creator>Sascha Wildner &lt;saw@online.de&gt;</dc:creator>
    </item>
<item>
        <title>5b245968732053a4221c42925bf7355d7eb4ad07 - build - Remove openssl from base (is now permanently replaced by ressl)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#5b245968732053a4221c42925bf7355d7eb4ad07</link>
        <description>build - Remove openssl from base (is now permanently replaced by ressl)* Remove openssl and related code that previous commits by John Marino  replaced with libressl.  Remove build hooks, base now only uses libressl.* Remove crypto/openssl.  This has been replaced by the openssl  implementation from ressl.* Remove lib/libcrypto.  This has been replaced by lib/librecrypto which  generates a private_crypo library only used by base.* Remove lib/libssl.  This has been replaced by lib/libressl which  generates a private_ssl library only used by base.* NOTE: In addition, John has been working on updating dports to ensure	that only the ports-based libssl and libcrypto (both nominally	implemented via ressl and not openssl), and that dports packages	no longer have any chance of using the private versions of these	libraries from base.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Fri, 28 Oct 2016 20:37:44 +0000</pubDate>
        <dc:creator>Matthew Dillon &lt;dillon@apollo.backplane.com&gt;</dc:creator>
    </item>
<item>
        <title>304ca408000cd34559ef5319b4b5a6766d6eb35b - Switch base to use private LibreSSL libaries</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#304ca408000cd34559ef5319b4b5a6766d6eb35b</link>
        <description>Switch base to use private LibreSSL libariesAll base users of the OpenSSL libraries (libssl.so and libcrypto.so) havebeen modified to link against the new LibreSSL versions instead.The OpenSSL libraries are still built by default, but nothing in base willuse them.  However, its certain that a myriad of dports link to OpenSSLalthough this may change in the future.The OpenSSL library building can be suppressed by putting NO_OPENSSL in/etc/make.conf.  The existing OpenSSL libraries and headers are not (yet)removed, however, even with that setting.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Wed, 07 Sep 2016 22:33:17 +0000</pubDate>
        <dc:creator>John Marino &lt;draco@marino.st&gt;</dc:creator>
    </item>
<item>
        <title>b7fb31a197a4fe32032bcdeb4b9ceb0cd605d77a - /etc/mail: Install 4 sample mailer.conf files</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#b7fb31a197a4fe32032bcdeb4b9ceb0cd605d77a</link>
        <description>/etc/mail: Install 4 sample mailer.conf filesThese files have been recently referenced in the DragonFly handbook.They are here to allow quick reconfiguration of the Mail Transfer Agent.For example, if Postfix from DPorts is desired, all one needs to do iscopy /etc/mail/mailer.conf.postfix to /etc/mail/mailer.conf and reboot(assuming postfix configuration files are already in place).This provides default MTA configurations for dma (base), postfix,sendmail, and and opensmtpd.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sat, 07 Mar 2015 19:37:38 +0000</pubDate>
        <dc:creator>John Marino &lt;draco@marino.st&gt;</dc:creator>
    </item>
<item>
        <title>0cde307f0d0dcc48c7dc2c2bcd2525f3c3ae68dd - dma(8): install default conf files with installworld</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#0cde307f0d0dcc48c7dc2c2bcd2525f3c3ae68dd</link>
        <description>dma(8): install default conf files with installworldPreviously dma configure files were only installed with the&quot;make distribution&quot; command.  Additionally, the user was expected tomodify them as opposed to copies of them.  This is probably why therewere part of distribution, in order to avoid overwriting the dma.confand auth.conf.The negative side to this approach is that updated *.conf sample fileswould never be installed.  Since the dma.conf is actually completelycommented out, and since it doesn&apos;t fail in the absence of dma.conf,these files aren&apos;t actually needed.This commit installs /etc/dma/dma.conf.sample and /etc/dma/auth.conf.samplefiles during installworld instead.  Future updates to the *.conf.samplefiles will overwrite them, but obviously /etc/dma/*.conf will not betouched. Some of the sendfile conf files are provided as .sample, so theconcept is not new for DragonFly.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Mon, 02 Mar 2015 13:45:55 +0000</pubDate>
        <dc:creator>John Marino &lt;draco@marino.st&gt;</dc:creator>
    </item>
<item>
        <title>c8b07ee5563f43ea65ee46cec4d8215ba54e6b3a - dma(8): Upgrade to v0.7.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#c8b07ee5563f43ea65ee46cec4d8215ba54e6b3a</link>
        <description>dma(8): Upgrade to v0.7.For the change log, see:https://github.com/corecode/dma/blob/master/debian/changelogTested-by:    luxhSubmitted-by: corecode

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Tue, 03 Jan 2012 14:31:49 +0000</pubDate>
        <dc:creator>Sascha Wildner &lt;saw@online.de&gt;</dc:creator>
    </item>
<item>
        <title>86d7f5d305c6adaa56ff4582ece9859d73106103 - Initial import of binutils 2.22 on the new vendor branch</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#86d7f5d305c6adaa56ff4582ece9859d73106103</link>
        <description>Initial import of binutils 2.22 on the new vendor branchFuture versions of binutils will also reside on this branch ratherthan continuing to create new binutils branches for each new version.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sat, 26 Nov 2011 08:27:44 +0000</pubDate>
        <dc:creator>John Marino &lt;draco@marino.st&gt;</dc:creator>
    </item>
<item>
        <title>4a8442c89c696a9dfa077cd91ad8ebae27f39fbe - Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#4a8442c89c696a9dfa077cd91ad8ebae27f39fbe</link>
        <description>Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Tue, 22 Sep 2009 04:58:43 +0000</pubDate>
        <dc:creator>Matthew Dillon &lt;dillon@apollo.backplane.com&gt;</dc:creator>
    </item>
<item>
        <title>3021968a96629ec4c89d457239155ec61eaecfa6 - dma: perform MX lookups</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#3021968a96629ec4c89d457239155ec61eaecfa6</link>
        <description>dma: perform MX lookups

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sun, 20 Sep 2009 18:58:37 +0000</pubDate>
        <dc:creator>Simon Schubert &lt;corecode@dragonflybsd.org&gt;</dc:creator>
    </item>
<item>
        <title>bd81e5e73d14254673bd80356f111f7719aa2d75 - Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#bd81e5e73d14254673bd80356f111f7719aa2d75</link>
        <description>Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Fri, 28 Aug 2009 05:47:13 +0000</pubDate>
        <dc:creator>Matthew Dillon &lt;dillon@apollo.backplane.com&gt;</dc:creator>
    </item>
<item>
        <title>30833a294d1c4929a8f2826cbc9a7ddc6ede653b - dma: factor out mail handling code</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#30833a294d1c4929a8f2826cbc9a7ddc6ede653b</link>
        <description>dma: factor out mail handling code

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Thu, 27 Aug 2009 11:52:43 +0000</pubDate>
        <dc:creator>Simon Schubert &lt;corecode@dragonflybsd.org&gt;</dc:creator>
    </item>
<item>
        <title>a7aa6fa110c8d2d240891397ea78b63896c22226 - Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#a7aa6fa110c8d2d240891397ea78b63896c22226</link>
        <description>Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Thu, 23 Jul 2009 05:06:12 +0000</pubDate>
        <dc:creator>Matthew Dillon &lt;dillon@apollo.backplane.com&gt;</dc:creator>
    </item>
<item>
        <title>1da0a9f2a6a5790964feae86bd803c2a7eb7a6fe - dma: always log error exits</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#1da0a9f2a6a5790964feae86bd803c2a7eb7a6fe</link>
        <description>dma: always log error exits

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Mon, 20 Jul 2009 20:48:00 +0000</pubDate>
        <dc:creator>Simon Schubert &lt;corecode@dragonflybsd.org&gt;</dc:creator>
    </item>
<item>
        <title>f4e61a9f31b06b334c93bdaeee8c4691d9391c4e - dma: rework queue handling</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#f4e61a9f31b06b334c93bdaeee8c4691d9391c4e</link>
        <description>dma: rework queue handling

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sun, 02 Nov 2008 00:10:10 +0000</pubDate>
        <dc:creator>Simon &apos;corecode&apos; Schubert &lt;corecode@fs.ei.tum.de&gt;</dc:creator>
    </item>
<item>
        <title>b1e4b60d1c470c1809f077638e0a9b7e54b197fb - Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#b1e4b60d1c470c1809f077638e0a9b7e54b197fb</link>
        <description>Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Sat, 18 Jul 2009 01:35:13 +0000</pubDate>
        <dc:creator>Matthew Dillon &lt;dillon@apollo.backplane.com&gt;</dc:creator>
    </item>
<item>
        <title>1ff94032a892b79a088be1baaa5136a593267200 - dma: unconditionally use openssl</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#1ff94032a892b79a088be1baaa5136a593267200</link>
        <description>dma: unconditionally use opensslDrop HAVE_CRYPTO and unconditionally use openssl.  Dma is supposed to besmall and secure, so there is no way around openssl anyways.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Thu, 16 Jul 2009 10:24:44 +0000</pubDate>
        <dc:creator>Simon Schubert &lt;corecode@dragonflybsd.org&gt;</dc:creator>
    </item>
<item>
        <title>171b452ed937502569479dca7735c04d62c17f7f - Merge branch &apos;master&apos; of git://venus/dragonfly</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#171b452ed937502569479dca7735c04d62c17f7f</link>
        <description>Merge branch &apos;master&apos; of git://venus/dragonfly

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Fri, 27 Feb 2009 00:48:16 +0000</pubDate>
        <dc:creator>Joe Talbott &lt;josepht@dragonflybsd.org&gt;</dc:creator>
    </item>
<item>
        <title>81c49e70756a771f632d326514ec33c45c3ceee8 - Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#81c49e70756a771f632d326514ec33c45c3ceee8</link>
        <description>Merge branch &apos;master&apos; of ssh://crater.dragonflybsd.org/repository/git/dragonfly

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Wed, 25 Feb 2009 18:41:16 +0000</pubDate>
        <dc:creator>Matthew Dillon &lt;dillon@apollo.backplane.com&gt;</dc:creator>
    </item>
<item>
        <title>53bd77f687921aba6181ffd7a78e4de157e7fdf2 - dma(8): Raise WARNS to 6.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/dflybsd-src/libexec/dma/Makefile#53bd77f687921aba6181ffd7a78e4de157e7fdf2</link>
        <description>dma(8): Raise WARNS to 6.

            List of files:
            /dflybsd-src/libexec/dma/Makefile</description>
        <pubDate>Tue, 24 Feb 2009 22:00:55 +0000</pubDate>
        <dc:creator>Sascha Wildner &lt;saw@online.de&gt;</dc:creator>
    </item>
</channel>
</rss>
