From: Jaroslav Kysela Date: Fri, 6 May 2005 14:06:09 +0000 (+0000) Subject: - Fedora 4 patch - fix for alpha arch X-Git-Tag: v1.0.9rc4~39 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=f2099d57700990d03a7c19bf4d7a231ade566966;p=alsa-lib.git - Fedora 4 patch - fix for alpha arch --- diff --git a/include/alsa-symbols.h b/include/alsa-symbols.h index f70c154d..900d9e6f 100644 --- a/include/alsa-symbols.h +++ b/include/alsa-symbols.h @@ -57,10 +57,16 @@ __asm__ (".set " #name "," #real); \ __asm__ (".set ." #name ",." #real) #else +#ifdef __alpha__ +#define use_default_symbol_version(real, name, version) \ + __asm__ (".weak " #name); \ + __asm__ (#name " = " #real) +#else #define use_default_symbol_version(real, name, version) \ __asm__ (".weak " #name); \ __asm__ (".set " #name "," #real) #endif #endif +#endif #endif /* __ALSA_SYMBOLS_H */