aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:17 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:17 +0000
commit139ab1f01919428682995a8e14903c110f6d1ce4 (patch)
tree083762ced923c73cfbd63e8d3f6b7b093f3ceeb7
parent5409d7b219dcdc9eefbd63c94aea573b70d00eff (diff)
downloadports-139ab1f01919428682995a8e14903c110f6d1ce4.tar.gz
ports-139ab1f01919428682995a8e14903c110f6d1ce4.zip
irc/iroffer-dinoex: enable libunwind on all supported architectures
-rw-r--r--irc/iroffer-dinoex/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/irc/iroffer-dinoex/Makefile b/irc/iroffer-dinoex/Makefile
index 81737a8e0a23..845c7dda10be 100644
--- a/irc/iroffer-dinoex/Makefile
+++ b/irc/iroffer-dinoex/Makefile
@@ -1,6 +1,6 @@
PORTNAME= iroffer
PORTVERSION= 3.32
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= irc
MASTER_SITES= https://iroffer.net/
PKGNAMESUFFIX= -dinoex${PKGNAMESUFFIX2}
@@ -58,7 +58,7 @@ GEOIP_CONFIGURE_ON= -geoip
.if ${PORT_OPTIONS:MRUBY}
# make stage-qa happy
# 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
.endif