Mercurial > mplayer.hg
comparison configure @ 642:ea9f904513a4
added --disable-fastmemcpy
author | arpi_esp |
---|---|
date | Thu, 26 Apr 2001 20:23:24 +0000 |
parents | f03f9ae6303a |
children | 29c9635aa144 |
comparison
equal
deleted
inserted
replaced
641:d161307f447a | 642:ea9f904513a4 |
---|---|
103 | 103 |
104 --disable-dshow disable DirectShow support (if you don't have | 104 --disable-dshow disable DirectShow support (if you don't have |
105 C++ compiler&libs, or you've found dshow codecs | 105 C++ compiler&libs, or you've found dshow codecs |
106 slower than old VfW ones) | 106 slower than old VfW ones) |
107 | 107 |
108 --disable-fastmemcpy disable 3dnow/sse/mmx optimized memcpy() | |
109 | |
108 --with-x11libdir=DIR X library files are in DIR | 110 --with-x11libdir=DIR X library files are in DIR |
109 --with-win32libdir=DIR windows codec files | 111 --with-win32libdir=DIR windows codec files |
110 --with-csslibdir=DIR directory contains libcss.so shared library | 112 --with-csslibdir=DIR directory contains libcss.so shared library |
111 --with-cssincdir=DIR directory contains libcss header file (css.h) | 113 --with-cssincdir=DIR directory contains libcss header file (css.h) |
112 | 114 |
210 _svga=no | 212 _svga=no |
211 _fbdev=yes | 213 _fbdev=yes |
212 _lirc=no | 214 _lirc=no |
213 _css=no | 215 _css=no |
214 _dshow=yes | 216 _dshow=yes |
217 _fastmemcpy=yes | |
215 | 218 |
216 _x=1 | 219 _x=1 |
217 _y=1 | 220 _y=1 |
218 | 221 |
219 _gllib= | 222 _gllib= |
609 --disable-select) | 612 --disable-select) |
610 _select='#undef HAVE_AUDIO_SELECT' | 613 _select='#undef HAVE_AUDIO_SELECT' |
611 ;; | 614 ;; |
612 --disable-dshow) | 615 --disable-dshow) |
613 _dshow=no | 616 _dshow=no |
617 ;; | |
618 --disable-fastmemcpy) | |
619 _fastmemcpy=no | |
614 ;; | 620 ;; |
615 --with-win32libdir=*) | 621 --with-win32libdir=*) |
616 _win32libdir=`echo $ac_option | cut -d '=' -f 2` | 622 _win32libdir=`echo $ac_option | cut -d '=' -f 2` |
617 _win32libdirnotify=no | 623 _win32libdirnotify=no |
618 ;; | 624 ;; |
667 echo "Checking for SVGAlib ... $_svga" | 673 echo "Checking for SVGAlib ... $_svga" |
668 echo "Checking for FBDev ... $_fbdev" | 674 echo "Checking for FBDev ... $_fbdev" |
669 echo "Checking for DeCSS support ... $_css" | 675 echo "Checking for DeCSS support ... $_css" |
670 echo "Checking for PNG support ... $_png" | 676 echo "Checking for PNG support ... $_png" |
671 echo "Checking for DirectShow ... $_dshow" | 677 echo "Checking for DirectShow ... $_dshow" |
678 echo "Checking for fastmemcpy ... $_fastmemcpy" | |
672 # write conf files. | 679 # write conf files. |
673 | 680 |
674 if [ $_gl = yes ]; then | 681 if [ $_gl = yes ]; then |
675 _gllib='-lGL' | 682 _gllib='-lGL' |
676 fi | 683 fi |
699 _dshow='#define USE_DIRECTSHOW' | 706 _dshow='#define USE_DIRECTSHOW' |
700 else | 707 else |
701 _dshowlib='' | 708 _dshowlib='' |
702 _dshowdep='' | 709 _dshowdep='' |
703 _dshow='#undef USE_DIRECTSHOW' | 710 _dshow='#undef USE_DIRECTSHOW' |
711 fi | |
712 | |
713 if [ $_fastmemcpy = yes ]; then | |
714 _fastmemcpy='#define USE_FASTMEMCPY' | |
715 else | |
716 _fastmemcpy='#undef USE_FASTMEMCPY' | |
704 fi | 717 fi |
705 | 718 |
706 if [ $_x11 = yes ]; then | 719 if [ $_x11 = yes ]; then |
707 if [ $_xdpms = yes ]; then | 720 if [ $_xdpms = yes ]; then |
708 _x11lib='-lX11 -lXext -lXdpms' | 721 _x11lib='-lX11 -lXext -lXdpms' |
973 #define MPEG12_POSTPROC | 986 #define MPEG12_POSTPROC |
974 | 987 |
975 /* DirectShow support */ | 988 /* DirectShow support */ |
976 $_dshow | 989 $_dshow |
977 | 990 |
991 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ | |
992 $_fastmemcpy | |
993 | |
978 /* Define if your processor stores words with the most significant | 994 /* Define if your processor stores words with the most significant |
979 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | 995 byte first (like Motorola and SPARC, unlike Intel and VAX). */ |
980 /* #define WORDS_BIGENDIAN */ | 996 /* #define WORDS_BIGENDIAN */ |
981 | 997 |
982 #define ARCH_X86 | 998 #define ARCH_X86 |