diff options
author | Andre Pang <athp@users.sourceforge.net> | 2004-08-02 08:25:11 +0000 |
---|---|---|
committer | Andre Pang <athp@users.sourceforge.net> | 2004-08-02 08:25:11 +0000 |
commit | 5aa193f389ee405abf2b3f1aa80ef6fe7f0dcf74 (patch) | |
tree | 999b1023141c4e2f083ca9271afa15cf5b53ff5c | |
parent | 8ff98101baa50b43ac9b79ee0e9e823a9d9ca807 (diff) | |
download | xine-lib-5aa193f389ee405abf2b3f1aa80ef6fe7f0dcf74.tar.gz xine-lib-5aa193f389ee405abf2b3f1aa80ef6fe7f0dcf74.tar.bz2 |
Don't include mmx.h on non-MMX systems: fixes compilation of Goom on Mac OS X
CVS patchset: 6868
CVS date: 2004/08/02 08:25:11
-rw-r--r-- | src/post/goom/cpu_info.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/post/goom/cpu_info.c b/src/post/goom/cpu_info.c index 2ebca754b..67d0a19de 100644 --- a/src/post/goom/cpu_info.c +++ b/src/post/goom/cpu_info.c @@ -8,7 +8,10 @@ */ #include "cpu_info.h" + +#ifdef HAVE_MMX #include "mmx.h" +#endif static unsigned int CPU_FLAVOUR = 0; |