summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/fastmemcpy.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libvo/fastmemcpy.h b/libvo/fastmemcpy.h
index d61f72b239..bd42d8562b 100644
--- a/libvo/fastmemcpy.h
+++ b/libvo/fastmemcpy.h
@@ -1,6 +1,8 @@
#ifndef __MPLAYER_MEMCPY
#define __MPLAYER_MEMCPY 1
+#ifdef USE_FASTMEMCPY
+
#if defined( HAVE_MMX2 ) || defined( HAVE_3DNOW ) || defined( HAVE_MMX )
#include <stddef.h>
@@ -10,3 +12,5 @@ extern void * fast_memcpy(void * to, const void * from, size_t len);
#endif
#endif
+
+#endif