svn commit: r211707 - head/cddl/lib/libzpool

Nathan Whitehorn nwhitehorn at FreeBSD.org
Mon Aug 23 16:47:30 UTC 2010


Author: nwhitehorn
Date: Mon Aug 23 16:47:29 2010
New Revision: 211707
URL: http://svn.freebsd.org/changeset/base/211707

Log:
  Add powerpc64 to the list of architectures with real atomic operations.
  
  Submitted by:	imp

Modified:
  head/cddl/lib/libzpool/Makefile

Modified: head/cddl/lib/libzpool/Makefile
==============================================================================
--- head/cddl/lib/libzpool/Makefile	Mon Aug 23 15:38:02 2010	(r211706)
+++ head/cddl/lib/libzpool/Makefile	Mon Aug 23 16:47:29 2010	(r211707)
@@ -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


More information about the svn-src-head mailing list