summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-01 17:56:02 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-01 17:56:02 +0000
commit3a1d08cf4cc869d1c3a5b5864a51988391208ef3 (patch)
tree1478ab7402fb96d8d076b110f2db2f3027e01865 /configure
parent090163c386b009e6dbae584eb8b8a5abc74285cd (diff)
downloadmpv-3a1d08cf4cc869d1c3a5b5864a51988391208ef3.tar.bz2
mpv-3a1d08cf4cc869d1c3a5b5864a51988391208ef3.tar.xz
Rename --enable-tremor-external option to --enable-tremor along with the
corresponding variables. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27511 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index 134e9dc2ad..4c53a28572 100755
--- a/configure
+++ b/configure
@@ -301,7 +301,7 @@ Codecs:
in libavcodec [enabled]
--disable-tremor-internal disable internal Tremor [enabled]
--enable-tremor-low enable lower accuracy internal Tremor [disabled]
- --enable-tremor-external enable external Tremor [autodetect]
+ --enable-tremor enable external Tremor [autodetect]
--disable-libvorbis disable libvorbis support [autodetect]
--disable-speex disable Speex support [autodetect]
--enable-theora enable OggTheora libraries [autodetect]
@@ -567,9 +567,9 @@ _mp3lame=auto
_mp3lame_lavc=auto
_toolame=auto
_twolame=auto
+_tremor=auto
_tremor_internal=yes
_tremor_low=no
-_tremor_external=auto
_libvorbis=auto
_speex=auto
_theora=auto
@@ -928,12 +928,12 @@ for ac_option do
--disable-libvorbis) _libvorbis=no ;;
--enable-speex) _speex=yes ;;
--disable-speex) _speex=no ;;
+ --enable-tremor) _tremor=yes ;;
+ --disable-tremor) _tremor=no ;;
--enable-tremor-internal) _tremor_internal=yes ;;
--disable-tremor-internal) _tremor_internal=no ;;
--enable-tremor-low) _tremor_low=yes ;;
--disable-tremor-low) _tremor_low=no ;;
- --enable-tremor-external) _tremor_external=yes ;;
- --disable-tremor-external) _tremor_external=no ;;
--enable-theora) _theora=yes ;;
--disable-theora) _theora=no ;;
--enable-mp3lib) _mp3lib=yes ;;
@@ -5935,13 +5935,13 @@ echores "$_toolame"
echocheck "OggVorbis support"
if test "$_tremor_internal" = yes; then
_libvorbis=no
-elif test "$_tremor_external" = auto; then
- _tremor_external=no
+elif test "$_tremor" = auto; then
+ _tremor=no
cat > $TMPC << EOF
#include <tremor/ivorbiscodec.h>
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
EOF
- cc_check -logg -lvorbisidec $_ld_lm && _tremor_external=yes && _libvorbis=no
+ cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
fi
if test "$_libvorbis" = auto; then
_libvorbis=no
@@ -5961,7 +5961,7 @@ if test "$_tremor_internal" = yes ; then
cflags_tremor_low="-D_LOW_ACCURACY_"
_res_comment="internal low accuracy Tremor"
fi
-elif test "$_tremor_external" = yes ; then
+elif test "$_tremor" = yes ; then
_vorbis=yes
_def_vorbis='#define CONFIG_OGGVORBIS 1'
_def_tremor='#define CONFIG_TREMOR 1'