svn commit: r482734 - branches/2018Q4/mail/isync

Emanuel Haupt ehaupt at FreeBSD.org
Mon Oct 22 07:26:20 UTC 2018


Author: ehaupt
Date: Mon Oct 22 07:26:19 2018
New Revision: 482734
URL: https://svnweb.freebsd.org/changeset/ports/482734

Log:
  MFH: r482733
  
  pragrma directive is not supported by base GCC. Remove it to fix build with
  mips, mips64, powerpc64.
  
  PR:		232514
  Submitted by:	Piotr Kubaj <pkubaj at anongoth.pl>
  Approved by:	ports-secteam (blanket)

Modified:
  branches/2018Q4/mail/isync/Makefile
Directory Properties:
  branches/2018Q4/   (props changed)

Modified: branches/2018Q4/mail/isync/Makefile
==============================================================================
--- branches/2018Q4/mail/isync/Makefile	Mon Oct 22 07:07:54 2018	(r482733)
+++ branches/2018Q4/mail/isync/Makefile	Mon Oct 22 07:26:19 2018	(r482734)
@@ -12,10 +12,6 @@ COMMENT=	Maintain local copies of remote IMAP folders 
 
 LICENSE=	GPLv2
 
-BROKEN_mips=		fails to compile: util.c:523: \#pragma GCC diagnostic not allowed inside functions
-BROKEN_mips64=		fails to compile: util.c:523: \#pragma GCC diagnostic not allowed inside functions
-BROKEN_powerpc64=	fails to compile: util.c:523: \#pragma GCC diagnostic not allowed inside functions
-
 LIB_DEPENDS=	libsasl2.so:security/cyrus-sasl2
 
 USES=		alias bdb cpe perl5 ssl
@@ -32,10 +28,15 @@ MAKE_ARGS+=	SSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto"
 CPPFLAGS+=	-I${BDB_INCLUDE_DIR}
 LDFLAGS+=	-L${BDB_LIB_DIR}
 
+.include <bsd.port.pre.mk>
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|: install-docDATA|:|g' ${WRKSRC}/Makefile.in
 	@${REINPLACE_CMD} -e 's|\$$(docdir)/examples|\$$(sysconfdir)|g' \
 	    ${WRKSRC}/src/Makefile.in ${WRKSRC}/src/compat/Makefile.in
 	@${REINPLACE_CMD} -e 's|-ansi||g' ${WRKSRC}/${CONFIGURE_SCRIPT}
+.if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${ARCH} == sparc64
+	@${REINPLACE_CMD} -e '/pragma/d' ${WRKSRC}/src/util.c
+.endif
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list