Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Nov 2018 03:33:04 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r484995 - head/mail/archiveopteryx-devel
Message-ID:  <201811150333.wAF3X4ld055503@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Thu Nov 15 03:33:04 2018
New Revision: 484995
URL: https://svnweb.freebsd.org/changeset/ports/484995

Log:
  Fix build on gcc-based archs.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/mail/archiveopteryx-devel/Makefile

Modified: head/mail/archiveopteryx-devel/Makefile
==============================================================================
--- head/mail/archiveopteryx-devel/Makefile	Thu Nov 15 03:26:23 2018	(r484994)
+++ head/mail/archiveopteryx-devel/Makefile	Thu Nov 15 03:33:04 2018	(r484995)
@@ -12,10 +12,6 @@ COMMENT=	Advanced PostgreSQL-based IMAP/POP server
 
 LICENSE=	MIT
 
-BROKEN_mips=		fails to build: /bin/sh: clang: not found
-BROKEN_mips64=		fails to build: /bin/sh: clang: not found
-BROKEN_powerpc64=	Does not build: /bin/sh: clang: not found
-
 BUILD_DEPENDS=	jam:devel/jam
 
 USE_GITHUB=	yes
@@ -46,9 +42,11 @@ OPTIONS_DEFINE=	DOCS
 
 .include <bsd.port.pre.mk>
 
-# force Clang when on FreeBSD
+# force Clang when on FreeBSD with clang in base
 .if ${OPSYS} == FreeBSD
-JAMARG=	"-sCLANG=1"
+.if ! ${ARCH:Mmips*} && ! ${ARCH:Mpowerpc*} && ! ${ARCH} == sparc64
+JAMARG+=	"-sCLANG=1"
+.endif
 .endif
 
 post-patch:



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