svn commit: r484995 - head/mail/archiveopteryx-devel

Mark Linimon linimon at FreeBSD.org
Thu Nov 15 03:33:05 UTC 2018


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:


More information about the svn-ports-all mailing list