Date: Thu, 1 Nov 2018 15:08:03 +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: r483673 - in head/devel/concurrencykit: . files Message-ID: <201811011508.wA1F831K003417@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: linimon Date: Thu Nov 1 15:08:02 2018 New Revision: 483673 URL: https://svnweb.freebsd.org/changeset/ports/483673 Log: Fix build on aarch64, armv6/7. PR: 229739 Submitted by: greg at unrelenting dot technology Approved by: portmgr (tier-2 blanket) Added: head/devel/concurrencykit/files/ head/devel/concurrencykit/files/patch-configure (contents, props changed) Modified: head/devel/concurrencykit/Makefile Modified: head/devel/concurrencykit/Makefile ============================================================================== --- head/devel/concurrencykit/Makefile Thu Nov 1 15:04:17 2018 (r483672) +++ head/devel/concurrencykit/Makefile Thu Nov 1 15:08:02 2018 (r483673) @@ -15,8 +15,6 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 sparc64 -BROKEN_armv6= fails to configure: Finding suitable compiler........failed [not found] -BROKEN_armv7= fails to configure: Finding suitable compiler........failed [not found] BROKEN_powerpc64= fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc OPTIONS_DEFINE= RTM VMAPACK Added: head/devel/concurrencykit/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/concurrencykit/files/patch-configure Thu Nov 1 15:08:02 2018 (r483673) @@ -0,0 +1,13 @@ +--- configure.orig 2018-07-15 19:01:39 UTC ++++ configure +@@ -512,6 +512,10 @@ pathsearch() + what=$1 + oldFS="$IFS" + IFS=":" ++ if test -x "$what" ; then ++ echo "$what"; ++ return ++ fi + for d in $PATH ; do + if test -x "$d/$what" ; then + echo "$d/$what";
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811011508.wA1F831K003417>