summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-09-07 22:32:11 +0200
committerLennart Poettering <lennart@poettering.net>2009-09-07 22:32:11 +0200
commitb705a9bb8dfd7f859b0aca98833010f831ba2e6a (patch)
tree5d66c5c225ab95fb11248863f5c3baf4a22fd0fd /src
parenta02861ea99b020181ba0dd9d5c0a3a978a6c59d1 (diff)
vector: don't try to build vector stuff on altivec
Diffstat (limited to 'src')
-rw-r--r--src/pulsecore/vector.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pulsecore/vector.h b/src/pulsecore/vector.h
index 924e3cb8..9de3b8cd 100644
--- a/src/pulsecore/vector.h
+++ b/src/pulsecore/vector.h
@@ -23,7 +23,8 @@
#include <inttypes.h>
/* First, define HAVE_VECTOR if we have the gcc vector extensions at all */
-#if defined(__SSE2__) || defined(__ALTIVEC__)
+#if defined(__SSE2__)
+ /* || defined(__ALTIVEC__)*/
#define HAVE_VECTOR