From 17981e0ab6d90f19352615f47f352df7992a6f1c Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 11 Dec 2007 20:07:18 +0000 Subject: Replace SYS_DARWIN conditional directive around gcc macros by __APPLE_CC__. The macro definition depends on compiler capabilities, not OS features. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25355 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mp3lib/dct64_altivec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mp3lib/dct64_altivec.c') diff --git a/mp3lib/dct64_altivec.c b/mp3lib/dct64_altivec.c index 9a012ad75e..9102d1bb25 100644 --- a/mp3lib/dct64_altivec.c +++ b/mp3lib/dct64_altivec.c @@ -26,7 +26,7 @@ #define WORD_s2 0x18,0x19,0x1a,0x1b #define WORD_s3 0x1c,0x1d,0x1e,0x1f -#ifdef SYS_DARWIN +#ifdef __APPLE_CC__ #define vcprm(a,b,c,d) (const vector unsigned char)(WORD_ ## a, WORD_ ## b, WORD_ ## c, WORD_ ## d) #else #define vcprm(a,b,c,d) (const vector unsigned char){WORD_ ## a, WORD_ ## b, WORD_ ## c, WORD_ ## d} @@ -42,13 +42,13 @@ #define FLOAT_n -1. #define FLOAT_p 1. -#ifdef SYS_DARWIN +#ifdef __APPLE_CC__ #define vcii(a,b,c,d) (const vector float)(FLOAT_ ## a, FLOAT_ ## b, FLOAT_ ## c, FLOAT_ ## d) #else #define vcii(a,b,c,d) (const vector float){FLOAT_ ## a, FLOAT_ ## b, FLOAT_ ## c, FLOAT_ ## d} #endif -#ifdef SYS_DARWIN +#ifdef __APPLE_CC__ #define FOUROF(a) (a) #else #define FOUROF(a) {a,a,a,a} -- cgit v1.2.3