Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Dec 2020 06:48:49 +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: r559050 - head/databases/libcouchbase
Message-ID:  <202012240648.0BO6mn2w055028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Thu Dec 24 06:48:48 2020
New Revision: 559050
URL: https://svnweb.freebsd.org/changeset/ports/559050

Log:
  Use the most recent change from arm to fix build on riscv64.
  
  While here, generalize the arm expression the way we usually do.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/databases/libcouchbase/Makefile

Modified: head/databases/libcouchbase/Makefile
==============================================================================
--- head/databases/libcouchbase/Makefile	Thu Dec 24 06:01:31 2020	(r559049)
+++ head/databases/libcouchbase/Makefile	Thu Dec 24 06:48:48 2020	(r559050)
@@ -11,7 +11,6 @@ COMMENT=	Multithreaded noSQL database (client and libr
 LICENSE=	APACHE20
 
 BROKEN_mips64=		fails to link: ld: failed to merge target specific data
-BROKEN_riscv64=		fails to build: dt_modtext: libdtrace/common/dt_link.c(947): RISC-V implementation required
 
 LIB_DEPENDS=	libevent.so:devel/libevent \
 		libev.so:devel/libev \
@@ -25,7 +24,7 @@ CMAKE_ARGS=	-DLCB_NO_TESTS=1
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7
+.if ${ARCH} == aarch64 || ${ARCH:Marmv*} || ${ARCH} == riscv64
 CMAKE_ARGS+=	-DDTRACE:BOOL=FALSE
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012240648.0BO6mn2w055028>