Date: Thu, 11 Mar 2021 21:24:27 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568133 - head/net-p2p/monero-cli Message-ID: <202103112124.12BLORd2048653@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Thu Mar 11 21:24:27 2021 New Revision: 568133 URL: https://svnweb.freebsd.org/changeset/ports/568133 Log: net-p2p/monero-cli: add libunwind for more architectures Modified: head/net-p2p/monero-cli/Makefile Modified: head/net-p2p/monero-cli/Makefile ============================================================================== --- head/net-p2p/monero-cli/Makefile Thu Mar 11 20:55:59 2021 (r568132) +++ head/net-p2p/monero-cli/Makefile Thu Mar 11 21:24:27 2021 (r568133) @@ -4,6 +4,7 @@ PORTNAME= monero-cli # To build from an arbitrary git commit comment PORTVERSION and PORTREVISION (if present) PORTVERSION= 0.17.1.9 +PORTREVISION= 1 DISTVERSIONPREFIX= v # and uncomment the following two lines (use for example -git-HEAD or -git-b6420e1) #PORTVERSION= 0 @@ -80,7 +81,7 @@ CMAKE_ARGS+= -DLD_RAW_FLAGS:STRING=-m${LD_EMULATION} .endif # keep in sync with all platforms where libunwind is available -.if (${ARCH} == amd64 || ${ARCH} == i386) +.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .else CMAKE_ARGS+= -DSTACK_TRACE:BOOL=OFF
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103112124.12BLORd2048653>