Date: Mon, 28 Jun 2021 20:27:37 GMT From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: c42d389423fd - main - devel/google-perftools: enable libunwind on all arches where it's supported Message-ID: <202106282027.15SKRbRV089030@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=c42d389423fd7fe4c3f62a6152817437b5ed1aa3 commit c42d389423fd7fe4c3f62a6152817437b5ed1aa3 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-06-28 20:27:08 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-06-28 20:27:08 +0000 devel/google-perftools: enable libunwind on all arches where it's supported --- devel/google-perftools/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devel/google-perftools/Makefile b/devel/google-perftools/Makefile index ce48341c9149..0c0ebbb68dba 100644 --- a/devel/google-perftools/Makefile +++ b/devel/google-perftools/Makefile @@ -3,6 +3,7 @@ PORTNAME= google-perftools DISTVERSIONPREFIX= gperftools- DISTVERSION= 2.9.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://github.com/gperftools/gperftools/releases/download/gperftools-${PORTVERSION}/ DISTNAME= gperftools-${PORTVERSION} @@ -59,7 +60,7 @@ CONFIGURE_ARGS+=--enable-frame-pointers .endif # keep in sync with all platforms where libunwind is available -.if (${ARCH} == amd64 || ${ARCH} == i386) +.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106282027.15SKRbRV089030>