svn commit: r454913 - head/mail/sid-milter
Dirk Meyer
dinoex at FreeBSD.org
Sun Nov 26 17:52:23 UTC 2017
Author: dinoex
Date: Sun Nov 26 17:52:21 2017
New Revision: 454913
URL: https://svnweb.freebsd.org/changeset/ports/454913
Log:
- fix regression with clang 4.0.0
PR: 223702
Modified:
head/mail/sid-milter/Makefile
Modified: head/mail/sid-milter/Makefile
==============================================================================
--- head/mail/sid-milter/Makefile Sun Nov 26 17:51:58 2017 (r454912)
+++ head/mail/sid-milter/Makefile Sun Nov 26 17:52:21 2017 (r454913)
@@ -2,7 +2,7 @@
PORTNAME= sid-milter
PORTVERSION= 1.0.0
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= mail
MASTER_SITES= SF/${PORTNAME}/SenderID%20Milter/${PORTVERSION}
@@ -11,7 +11,8 @@ COMMENT= Milter module for sid and spf
RESTRICTED= May incorporate intellectual property, possible patent issues
-CFLAGS+= -std=gnu89
+# on FreeBSD 11 optimized code fails with 'MalformedDomain'
+CFLAGS:= ${CFLAGS:S/-O2//g}
WCONF= ${WRKSRC}/devtools/Site
DOCSFILES= FEATURES INSTALL KNOWNBUGS LICENSE README README-SenderID \
RELEASE_NOTES rfc4406.txt rfc4407.txt rfc4408.txt
More information about the svn-ports-all
mailing list