Enable atomics operations for fontconfig on mips64 and mips64el.

ok kettenis@
This commit is contained in:
matthieu 2016-03-13 20:23:35 +00:00
parent 27f67406f3
commit fc89427fc0

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile.inc,v 1.2 2013/03/19 17:53:11 matthieu Exp $
# $OpenBSD: Makefile.inc,v 1.3 2016/03/13 20:23:35 matthieu Exp $
X11BASE ?= /usr/X11R6
@ -17,7 +17,8 @@ CFLAGS += -I${FONTCONFIG} \
-I${.CURDIR}
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "amd64" || \
${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "powerpc" || \
${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "mips64" || \
${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "powerpc" || \
${MACHINE_ARCH} == "sparc64"
CFLAGS += -DHAVE_INTEL_ATOMIC_PRIMITIVES=1
.endif