pkgsrc/textproc/icu/hacks.mk

14 lines
339 B
Makefile

# $NetBSD: hacks.mk,v 1.1 2013/02/01 03:44:22 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"
. if !empty(CC_VERSION:Mgcc-4.[0-5].*)
PKG_HACKS+= arm-gcc-atomics
CFLAGS+= -DU_HAVE_GCC_ATOMICS=0
. endif
.endif
.endif