14 lines
370 B
Makefile
14 lines
370 B
Makefile
# $NetBSD: hacks.mk,v 1.2 2013/08/07 10:19:04 jmcneill Exp $
|
|
|
|
.if !defined(ICU_HACKS_MK)
|
|
ICU_HACKS_MK= # defined
|
|
|
|
# NetBSD arm gcc <= 4.5 missing builtin atomics
|
|
.if ${OPSYS} == "NetBSD" && (${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "earm")
|
|
. if !empty(CC_VERSION:Mgcc-4.[0-5].*)
|
|
PKG_HACKS+= arm-gcc-atomics
|
|
CFLAGS+= -DU_HAVE_GCC_ATOMICS=0
|
|
. endif
|
|
.endif
|
|
|
|
.endif
|