summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-26 20:23:24 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-26 20:23:24 +0000
commit2d3fd979f953cf29fa73abc02f0fb526990e1656 (patch)
tree88c7602104341fabea8c56a732ad341ed1b84221 /configure
parentef509505f7acf4af80adb717511cb4c78b2e4027 (diff)
downloadmpv-2d3fd979f953cf29fa73abc02f0fb526990e1656.tar.bz2
mpv-2d3fd979f953cf29fa73abc02f0fb526990e1656.tar.xz
added --disable-fastmemcpy
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@643 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 16 insertions, 0 deletions
diff --git a/configure b/configure
index b344bbe845..32526b866f 100755
--- a/configure
+++ b/configure
@@ -105,6 +105,8 @@ params:
C++ compiler&libs, or you've found dshow codecs
slower than old VfW ones)
+ --disable-fastmemcpy disable 3dnow/sse/mmx optimized memcpy()
+
--with-x11libdir=DIR X library files are in DIR
--with-win32libdir=DIR windows codec files
--with-csslibdir=DIR directory contains libcss.so shared library
@@ -212,6 +214,7 @@ _fbdev=yes
_lirc=no
_css=no
_dshow=yes
+_fastmemcpy=yes
_x=1
_y=1
@@ -612,6 +615,9 @@ do
--disable-dshow)
_dshow=no
;;
+ --disable-fastmemcpy)
+ _fastmemcpy=no
+ ;;
--with-win32libdir=*)
_win32libdir=`echo $ac_option | cut -d '=' -f 2`
_win32libdirnotify=no
@@ -669,6 +675,7 @@ echo "Checking for FBDev ... $_fbdev"
echo "Checking for DeCSS support ... $_css"
echo "Checking for PNG support ... $_png"
echo "Checking for DirectShow ... $_dshow"
+echo "Checking for fastmemcpy ... $_fastmemcpy"
# write conf files.
if [ $_gl = yes ]; then
@@ -703,6 +710,12 @@ else
_dshow='#undef USE_DIRECTSHOW'
fi
+if [ $_fastmemcpy = yes ]; then
+ _fastmemcpy='#define USE_FASTMEMCPY'
+else
+ _fastmemcpy='#undef USE_FASTMEMCPY'
+fi
+
if [ $_x11 = yes ]; then
if [ $_xdpms = yes ]; then
_x11lib='-lX11 -lXext -lXdpms'
@@ -975,6 +988,9 @@ $_css
/* DirectShow support */
$_dshow
+/* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/
+$_fastmemcpy
+
/* Define if your processor stores words with the most significant
byte first (like Motorola and SPARC, unlike Intel and VAX). */
/* #define WORDS_BIGENDIAN */