summaryrefslogtreecommitdiffstats
path: root/mp3lib/dct64_altivec.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-11 20:16:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-11 20:16:00 +0000
commit24af96f8cc436fd84cd89dcc715961dacb6ad368 (patch)
tree13698971c8fca418c8b3e4405cd35911f8a705a4 /mp3lib/dct64_altivec.c
parent17981e0ab6d90f19352615f47f352df7992a6f1c (diff)
downloadmpv-24af96f8cc436fd84cd89dcc715961dacb6ad368.tar.bz2
mpv-24af96f8cc436fd84cd89dcc715961dacb6ad368.tar.xz
There is a check for altivec.h in configure so use the preprocessor directive
set by configure instead of an OS-specific directive when #including altivec.h. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25356 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/dct64_altivec.c')
-rw-r--r--mp3lib/dct64_altivec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mp3lib/dct64_altivec.c b/mp3lib/dct64_altivec.c
index 9102d1bb25..16e7ae01f5 100644
--- a/mp3lib/dct64_altivec.c
+++ b/mp3lib/dct64_altivec.c
@@ -11,7 +11,7 @@
#include "mpg123.h"
-#ifndef SYS_DARWIN
+#ifdef HAVE_ALTIVEC_H
#include <altivec.h>
#endif