Date: Thu, 15 Nov 2018 03:26:23 +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: r484994 - head/mail/archiveopteryx Message-ID: <201811150326.wAF3QN6t050347@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811150326.wAF3QN6t050347>