lang/ruby26: enable libunwind on all supported architectures

This commit is contained in:
Piotr Kubaj 2021-06-28 20:27:21 +00:00
parent 224f6e3256
commit d4f4dda64a

View File

@ -93,7 +93,7 @@ CONFIGURE_ARGS+=--disable-dtrace
.endif
# keep in sync with all platforms where libunwind is available
.if (${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH:Mpowerpc64*})
.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le
LIB_DEPENDS+= libunwind.so:devel/libunwind
.endif