Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Nov 2017 17:52:22 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r454913 - head/mail/sid-milter
Message-ID:  <201711261752.vAQHqMTG057286@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711261752.vAQHqMTG057286>