svn commit: r484994 - head/mail/archiveopteryx

Mark Linimon linimon at FreeBSD.org
Thu Nov 15 03:26:24 UTC 2018


Author: linimon
Date: Thu Nov 15 03:26:23 2018
New Revision: 484994
URL: https://svnweb.freebsd.org/changeset/ports/484994

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

Modified:
  head/mail/archiveopteryx/Makefile

Modified: head/mail/archiveopteryx/Makefile
==============================================================================
--- head/mail/archiveopteryx/Makefile	Thu Nov 15 03:22:56 2018	(r484993)
+++ head/mail/archiveopteryx/Makefile	Thu Nov 15 03:26:23 2018	(r484994)
@@ -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=	fails to build: /bin/sh: clang: not found
-
 BUILD_DEPENDS=	jam:devel/jam
 
 USES=		perl5 ssl tar:bzip2
@@ -40,9 +36,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
+.if ! ${ARCH:Mmips*} && ! ${ARCH:Mpowerpc*} && ! ${ARCH} == sparc64
 JAMARG+=	"-sCLANG=1"
+.endif
 .endif
 
 post-patch:


More information about the svn-ports-all mailing list