Mercurial > mplayer.hg
changeset 26667:b8d735263b29
Add option to disable mp3lame.
author | diego |
---|---|
date | Thu, 08 May 2008 22:32:40 +0000 |
parents | 581637633ec4 |
children | 23a4326c4779 |
files | configure |
diffstat | 1 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Thu May 08 21:58:32 2008 +0000 +++ b/configure Thu May 08 22:32:40 2008 +0000 @@ -311,6 +311,7 @@ --disable-ladspa disable LADSPA plugin support [autodetect] --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect] --disable-mad disable libmad (MPEG audio) support [autodetect] + --disable-mp3lame disable LAME MP3 encoding support [autodetect] --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect] --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect] --enable-xmms enable XMMS input plugin support [disabled] @@ -553,6 +554,7 @@ _libcdio=auto _liblzo=auto _mad=auto +_mp3lame=auto _toolame=auto _twolame=auto _tremor_internal=yes @@ -890,6 +892,8 @@ --disable-openal) _openal=no ;; --enable-mad) _mad=yes ;; --disable-mad) _mad=no ;; + --enable-mp3lame) _mp3lame=yes ;; + --disable-mp3lame) _mp3lame=no ;; --enable-toolame) _toolame=yes ;; --disable-toolame) _toolame=no ;; --enable-twolame) _twolame=yes ;; @@ -6642,9 +6646,10 @@ if test "$_mencoder" != no ; then echocheck "libmp3lame (for mencoder)" -_mp3lame=no _def_mp3lame_preset='#undef HAVE_MP3LAME_PRESET' _def_mp3lame_preset_medium='#undef HAVE_MP3LAME_PRESET_MEDIUM' +if test "$_mp3lame" = auto ; then +_mp3lame=no cat > $TMPC <<EOF #include <lame/lame.h> int main(void) { lame_version_t lv; (void) lame_init(); @@ -6652,6 +6657,7 @@ return 0; } EOF cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes +fi if test "$_mp3lame" = yes ; then _def_mp3lame="#define HAVE_MP3LAME" _ld_mp3lame=-lmp3lame