Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Dec 2020 15:16:52 +0000 (UTC)
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r558997 - head/databases/libcouchbase
Message-ID:  <202012231516.0BNFGqP5066764@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mikael
Date: Wed Dec 23 15:16:52 2020
New Revision: 558997
URL: https://svnweb.freebsd.org/changeset/ports/558997

Log:
  databases/libcouchbase: disable dtrace on arm
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/databases/libcouchbase/Makefile

Modified: head/databases/libcouchbase/Makefile
==============================================================================
--- head/databases/libcouchbase/Makefile	Wed Dec 23 14:54:30 2020	(r558996)
+++ head/databases/libcouchbase/Makefile	Wed Dec 23 15:16:52 2020	(r558997)
@@ -10,8 +10,6 @@ COMMENT=	Multithreaded noSQL database (client and libr
 
 LICENSE=	APACHE20
 
-BROKEN_armv6=		fails to build: dt_modtext: libdtrace/common/dt_link.c(820): arm not implemented
-BROKEN_armv7=		fails to build: dt_modtext: libdtrace/common/dt_link.c(820): arm not implemented
 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
 
@@ -25,4 +23,10 @@ USE_PERL5=	build run
 
 CMAKE_ARGS=	-DLCB_NO_TESTS=1
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7
+CMAKE_ARGS+=	-DDTRACE:BOOL=FALSE
+.endif
+
+.include <bsd.port.post.mk>



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