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:
parent
d35efc252a
commit
597c869baf
1 changed files with 14 additions and 0 deletions
14
textproc/groonga/hacks.mk
Normal file
14
textproc/groonga/hacks.mk
Normal 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
|
Loading…
Reference in a new issue