From owner-svn-ports-head@freebsd.org Sat Dec 8 22:12:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EC41132ACEF; Sat, 8 Dec 2018 22:12:58 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 03B7A6B08B; Sat, 8 Dec 2018 22:12:58 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D35C4299; Sat, 8 Dec 2018 22:12:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB8MCvBk000499; Sat, 8 Dec 2018 22:12:57 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB8MCvUn000498; Sat, 8 Dec 2018 22:12:57 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201812082212.wB8MCvUn000498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 8 Dec 2018 22:12:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486988 - head/lang/swi-pl X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/lang/swi-pl X-SVN-Commit-Revision: 486988 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 03B7A6B08B X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; NEURAL_HAM_LONG(-0.99)[-0.990,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Dec 2018 22:12:58 -0000 Author: linimon Date: Sat Dec 8 22:12:57 2018 New Revision: 486988 URL: https://svnweb.freebsd.org/changeset/ports/486988 Log: gnu qsort check goes into an infinite loop on aarch64. Disable it. PR: 233033 Submitted by: Greg V Approved by: portmgr (tier-2 blanket) Modified: head/lang/swi-pl/Makefile Modified: head/lang/swi-pl/Makefile ============================================================================== --- head/lang/swi-pl/Makefile Sat Dec 8 20:43:53 2018 (r486987) +++ head/lang/swi-pl/Makefile Sat Dec 8 22:12:57 2018 (r486988) @@ -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 @@ -56,6 +56,10 @@ PLIST_SUB+= BITS=64 .if (${ARCH} == amd64) ARCH= x86_64 +.endif + +.if (${ARCH} == aarch64) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-skip-gnu-qsort .endif post-configure: