[pulseaudio-commits] Branch 'next' - src/pulsecore

Arun Raghavan arun at kemper.freedesktop.org
Wed Jun 1 10:40:25 UTC 2016


 src/pulsecore/atomic.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 999d56760a318fb82601cffe809439c28696079b
Author: John Paul Adrian Glaubitz <glaubitz at physik.fu-berlin.de>
Date:   Mon May 16 20:53:13 2016 +0200

    pulsecore: Fix incorrect architecture mapping on sparc64.
    
    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=95432
    
    Signed-off-by: John Paul Adrian Glaubitz <glaubitz at physik.fu-berlin.de>
    Signed-off-by: Arun Raghavan <arun at arunraghavan.net>

diff --git a/src/pulsecore/atomic.h b/src/pulsecore/atomic.h
index 4758c84..7657144 100644
--- a/src/pulsecore/atomic.h
+++ b/src/pulsecore/atomic.h
@@ -201,7 +201,7 @@ static inline u_int atomic_fetchadd_int(volatile u_int *p, u_int v) {
 
     return (v);
 }
-#elif defined(__sparc64__)
+#elif defined(__sparc__) && defined(__arch64__)
 #define atomic_load_acq_64      atomic_load_acq_long
 #define atomic_fetchadd_int     atomic_add_int
 #elif defined(__ia64__)



More information about the pulseaudio-commits mailing list