diff options
Diffstat (limited to 'lang/swi-pl/Makefile')
-rw-r--r-- | lang/swi-pl/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lang/swi-pl/Makefile b/lang/swi-pl/Makefile index 2fa70887faa7..73397136c94b 100644 --- a/lang/swi-pl/Makefile +++ b/lang/swi-pl/Makefile @@ -12,16 +12,16 @@ COMMENT= Edinburgh-style Prolog compiler LICENSE= BSD2CLAUSE +BROKEN_mips= fails to link: libswipl.so: undefined reference to '__sync_sub_and_fetch_4' +BROKEN_mips64= fails to link: libswipl.so: undefined reference to '__sync_sub_and_fetch_4' +BROKEN_powerpc64= fails to compile: pce_principal.pl:155: Shared object "pl2xpce" not found, required by "swipl" + LIB_DEPENDS= libgmp.so:math/gmp \ libodbc.so:databases/unixODBC \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libpcre.so:devel/pcre -BROKEN_mips= fails to link: libswipl.so: undefined reference to '__sync_sub_and_fetch_4' -BROKEN_mips64= fails to link: libswipl.so: undefined reference to '__sync_sub_and_fetch_4' -BROKEN_powerpc64= fails to compile: pce_principal.pl:155: Shared object "pl2xpce" not found, required by "swipl" - SWIPLDIR= ${PORTNAME:C/-//}-${PORTVERSION} NOPRECIOUSMAKEVARS= yes @@ -58,6 +58,10 @@ PLIST_SUB+= BITS=64 ARCH= x86_64 .endif +.if (${ARCH} == aarch64) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-skip-gnu-qsort +.endif + post-configure: .if ${ARCH} != i386 @${REINPLACE_CMD} -e '/^CMFLAGS=/s/$$/ -fPIC/' \ |