svn commit: r416820 - in head/mail/postfix-current: . files
Olli Hauer
ohauer at FreeBSD.org
Sun Jun 12 19:04:58 UTC 2016
Author: ohauer
Date: Sun Jun 12 19:04:57 2016
New Revision: 416820
URL: https://svnweb.freebsd.org/changeset/ports/416820
Log:
- update to 3.2-20160612
- fix build with LibreSSL [1]
20160601
Cleanup: moved parsing of '!' operators from cidr_match.c
to dict_cidr.c. Files: util/cidr_match.[hc], util/dict_cidr.c,
util/match_ops.c.
20160604
Cleanup: made parsing of '!' operators in regexp and pcre
tables consistent with cidr tables. Files: util/dict_regexp.c,
util/dict_pcre.c.
20160605
Cleanup: integer wrap-around detection in the MySQL and
PostgreSQL clients. This is totally non-critical because
Postfix strings are size-limited by design. Files:
global/dict_mysqql.c, global/dict_pgsql.c.
20160607
Documentation: dnsblog.
20160609
Documentation: postsuper(1) manpage text for multiple -[dhH]
options. File: postsuper/postsuper.c.
20160611
Cleanup: Postfix SMTP server local IP address and port
attributes in the policy delegation protocol (attribute
names: server_address, server_port), in the Milter protocol
(macro names: {daemon_addr}, {daemon_port}) and in the
XCLIENT protocol (attribute names: DESTADDR, DESTPORT).
Files: proto/MILTER_README.html, proto/SMTPD_POLICY_README.html,
cleanup/cleanup.h, cleanup/cleanup_milter.c, global/mail_proto.h,
milter/milter.h, smtpd/smtpd.c, smtpd/smtpd.h, smtpd/smtpd_check.c,
smtpd/smtpd_haproxy.c, smtpd/smtpd_milter.c, smtpd/smtpd_peer.c.
20140612
Bugfix: missing server address/port conversion. File:
smtpd/smtpd_peer.c.
Submitted by: brnrd@ [1]
Obtained from: http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/mail/postfix/stable/patches/ [1]
Added:
head/mail/postfix-current/files/patch-src_tls_tls.h (contents, props changed)
Modified:
head/mail/postfix-current/Makefile
head/mail/postfix-current/distinfo
head/mail/postfix-current/files/patch-src__util__sys_defs.h
Modified: head/mail/postfix-current/Makefile
==============================================================================
--- head/mail/postfix-current/Makefile Sun Jun 12 18:28:19 2016 (r416819)
+++ head/mail/postfix-current/Makefile Sun Jun 12 19:04:57 2016 (r416820)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= postfix
-DISTVERSION= 3.2-20160527
+DISTVERSION= 3.2-20160612
PORTEPOCH= 4
CATEGORIES= mail ipv6
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \
Modified: head/mail/postfix-current/distinfo
==============================================================================
--- head/mail/postfix-current/distinfo Sun Jun 12 18:28:19 2016 (r416819)
+++ head/mail/postfix-current/distinfo Sun Jun 12 19:04:57 2016 (r416820)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1464520135
-SHA256 (postfix/postfix-3.2-20160527.tar.gz) = 879c9e93ffa5779cf9846773d4a7866f8e0464ec1275c0a3630890792fb77ac1
-SIZE (postfix/postfix-3.2-20160527.tar.gz) = 4339037
+TIMESTAMP = 1465744385
+SHA256 (postfix/postfix-3.2-20160612.tar.gz) = d7a64b6166befe9a0a705144283eec9ea055bb4cba67a5704bfb1a4048b3860c
+SIZE (postfix/postfix-3.2-20160612.tar.gz) = 4366596
Modified: head/mail/postfix-current/files/patch-src__util__sys_defs.h
==============================================================================
--- head/mail/postfix-current/files/patch-src__util__sys_defs.h Sun Jun 12 18:28:19 2016 (r416819)
+++ head/mail/postfix-current/files/patch-src__util__sys_defs.h Sun Jun 12 19:04:57 2016 (r416820)
@@ -1,10 +1,10 @@
---- src/util/sys_defs.h.orig 2014-12-25 22:33:02 UTC
+--- src/util/sys_defs.h.orig 2016-05-15 15:20:14 UTC
+++ src/util/sys_defs.h
-@@ -26,6 +26,7 @@
+@@ -27,6 +27,7 @@
#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \
|| defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \
|| defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \
+ || defined(FREEBSD11) \
|| defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \
|| defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \
- || defined(OPENBSD5) \
+ || defined(OPENBSD5) || defined(OPENBSD6) \
Added: head/mail/postfix-current/files/patch-src_tls_tls.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/mail/postfix-current/files/patch-src_tls_tls.h Sun Jun 12 19:04:57 2016 (r416820)
@@ -0,0 +1,14 @@
+# fix build against LibreSSL
+# Obtained from: http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/mail/postfix/stable/patches/
+#
+--- src/tls/tls.h.orig 2016-02-06 20:09:41 UTC
++++ src/tls/tls.h
+@@ -89,7 +89,7 @@ extern const char *str_tls_level(int);
+ #endif
+
+ /* Backwards compatibility with OpenSSL < 1.1.0 */
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
+ #define OpenSSL_version_num SSLeay
+ #define OpenSSL_version SSLeay_version
+ #define OPENSSL_VERSION SSLEAY_VERSION
More information about the svn-ports-all
mailing list