From 57fb77134b319c6f7eaf262c561082fcae49c1a3 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 24 Aug 2009 17:01:44 +0200 Subject: remap: fix build for non-x86 builds --- src/pulsecore/remap_mmx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pulsecore/remap_mmx.c b/src/pulsecore/remap_mmx.c index bfcae6c5..00252dac 100644 --- a/src/pulsecore/remap_mmx.c +++ b/src/pulsecore/remap_mmx.c @@ -95,6 +95,7 @@ "4: \n\t" \ " emms \n\t" +#if defined (__i386__) || defined (__amd64__) static void remap_mono_to_stereo_mmx (pa_remap_t *m, void *dst, const void *src, unsigned n) { pa_reg_x86 temp; @@ -138,6 +139,7 @@ static void init_remap_mmx (pa_remap_t *m) { pa_log_info("Using MMX mono to stereo remapping"); } } +#endif /* defined (__i386__) || defined (__amd64__) */ void pa_remap_func_init_mmx (pa_cpu_x86_flag_t flags) { #if defined (__i386__) || defined (__amd64__) -- cgit