svn commit: r212698 - stable/7/cddl/lib/libzpool

Marius Strobl marius at FreeBSD.org
Wed Sep 15 20:40:33 UTC 2010


Author: marius
Date: Wed Sep 15 20:40:29 2010
New Revision: 212698
URL: http://svn.freebsd.org/changeset/base/212698

Log:
  MFC: r208459
  
  Use real atomic operations for sparc64.

Modified:
  stable/7/cddl/lib/libzpool/Makefile
Directory Properties:
  stable/7/cddl/lib/libzpool/   (props changed)

Modified: stable/7/cddl/lib/libzpool/Makefile
==============================================================================
--- stable/7/cddl/lib/libzpool/Makefile	Wed Sep 15 20:40:27 2010	(r212697)
+++ stable/7/cddl/lib/libzpool/Makefile	Wed Sep 15 20:40:29 2010	(r212698)
@@ -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} == "sparc64"
 .PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/atomic/${MACHINE_ARCH}
 ATOMIC_SRCS=	opensolaris_atomic.S
 .else


More information about the svn-src-all mailing list