View | Details | Raw Unified | Return to bug 229923
Collapse All | Expand All

(-)Makefile (-3 / +1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	concurrencykit
4
PORTNAME=	concurrencykit
5
PORTVERSION=	0.6.0
5
PORTVERSION=	0.6.0
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://concurrencykit.org/releases/ \
8
MASTER_SITES=	http://concurrencykit.org/releases/ \
8
		http://repnop.org/releases/
9
		http://repnop.org/releases/
Lines 15-23 Link Here
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
LICENSE_FILE=	${WRKSRC}/LICENSE
16
17
17
ONLY_FOR_ARCHS=	aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 sparc64
18
ONLY_FOR_ARCHS=	aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 sparc64
18
BROKEN_aarch64=		fails to configure: Detecting machine architecture...failed  [unsupported]
19
BROKEN_armv6=		fails to configure: Finding suitable compiler........failed  [not found]
20
BROKEN_armv7=		fails to configure: Finding suitable compiler........failed  [not found]
21
BROKEN_powerpc64=	fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc
19
BROKEN_powerpc64=	fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc
22
20
23
OPTIONS_DEFINE=		RTM VMAPACK
21
OPTIONS_DEFINE=		RTM VMAPACK
(-)files/patch-configure (+14 lines)
Line 0 Link Here
1
--- configure	2018-07-21 14:39:05.375491000 +0200
2
+++ configure	2018-07-21 15:12:19.138448000 +0200
3
@@ -561,7 +561,10 @@
4
 fi
5
 
6
 printf "Finding suitable compiler........"
7
-CC=`pathsearch "${CC:-cc}"`
8
+# A quick fix for poudriere cross builds
9
+if test $CC != "/nxb-bin/usr/bin/cc"; then
10
+	CC=`pathsearch "${CC:-cc}"`
11
+fi
12
 if test -z "$CC" -o ! -x "$CC"; then
13
 	CC=`pathsearch "${CC:-gcc}"`
14
 fi

Return to bug 229923