Add use of devel/libatomic on powerpc ports; fixes the build since

this platform doesn't have native 8-byte atomics.
This commit is contained in:
he 2020-09-13 13:16:10 +00:00
parent d35efc252a
commit 597c869baf

14
textproc/groonga/hacks.mk Normal file
View file

@ -0,0 +1,14 @@
# $NetBSD: hacks.mk,v 1.5 2020/09/13 13:16:10 he Exp $
.if !defined(GROONGA_HACKS_MK)
GROONGA_HACKS_MK= defined
# [Mon Sep 7 20:40:36 CEST 2020 : he]
# On NetBSD/powerpc, we don't have native 8-byte atomics,
# but this package insists on using them, so here we need libatomic.
.if ${MACHINE_ARCH} == "powerpc"
PKG_HACKS+= powerpc-libatomic
.include "../../devel/libatomic/buildlink3.mk"
.endif
.endif # GROONGA_HACKS_MK