aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:08 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:08 +0000
commitc42d389423fd7fe4c3f62a6152817437b5ed1aa3 (patch)
tree0fbc3d0cd3b73ec8e9007528002df93b8dd57c06
parentd23863a56a537a0eab0e317381ddefb33cdcf988 (diff)
downloadports-c42d389423fd7fe4c3f62a6152817437b5ed1aa3.tar.gz
ports-c42d389423fd7fe4c3f62a6152817437b5ed1aa3.zip
devel/google-perftools: enable libunwind on all arches where it's supported
-rw-r--r--devel/google-perftools/Makefile3
1 files changed, 2 insertions, 1 deletions
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