From owner-svn-ports-branches@freebsd.org Mon Oct 22 07:26:20 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DAB7FECAFF; Mon, 22 Oct 2018 07:26:20 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D63938C5B2; Mon, 22 Oct 2018 07:26:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C203019266; Mon, 22 Oct 2018 07:26:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9M7QJ2x093107; Mon, 22 Oct 2018 07:26:19 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9M7QJVD093106; Mon, 22 Oct 2018 07:26:19 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201810220726.w9M7QJVD093106@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Mon, 22 Oct 2018 07:26:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r482734 - branches/2018Q4/mail/isync X-SVN-Group: ports-branches X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: branches/2018Q4/mail/isync X-SVN-Commit-Revision: 482734 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Oct 2018 07:26:20 -0000 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 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 + 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 +.include