mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
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@physik.fu-berlin.de> Signed-off-by: Arun Raghavan <arun@arunraghavan.net>
This commit is contained in:
parent
a5f71d1c54
commit
d7ffbfd1dc
1 changed files with 1 additions and 1 deletions
|
|
@ -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__)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue