aboutsummaryrefslogtreecommitdiff
path: root/cddl/lib
diff options
context:
space:
mode:
authorNathan Whitehorn <nwhitehorn@FreeBSD.org>2010-08-23 16:47:29 +0000
committerNathan Whitehorn <nwhitehorn@FreeBSD.org>2010-08-23 16:47:29 +0000
commitde563149f58a4cdad8a5493b7d9a6a0ac415d1b1 (patch)
treefbad69d33a26616338834918ed996ea492a37b41 /cddl/lib
parentea246b6369b9c4311cbaeaf69610cee4c434a295 (diff)
Add powerpc64 to the list of architectures with real atomic operations.
Submitted by: imp
Notes
svn path=/head/; revision=211707
Diffstat (limited to 'cddl/lib')
-rw-r--r--cddl/lib/libzpool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/lib/libzpool/Makefile b/cddl/lib/libzpool/Makefile
index 045e13d71dbf..6d8d59f82114 100644
--- a/cddl/lib/libzpool/Makefile
+++ b/cddl/lib/libzpool/Makefile
@@ -11,7 +11,7 @@
# LIST_SRCS
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/os
# ATOMIC_SRCS
-.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64"
+.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "powerpc64"
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/atomic/${MACHINE_ARCH}
ATOMIC_SRCS= opensolaris_atomic.S
.else