diff options
-rw-r--r-- | mail/archiveopteryx-devel/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/mail/archiveopteryx-devel/Makefile b/mail/archiveopteryx-devel/Makefile index e399dbc96d20..04060afb1586 100644 --- a/mail/archiveopteryx-devel/Makefile +++ b/mail/archiveopteryx-devel/Makefile @@ -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: |