Enable ffmpeg transcoding by default

This commit is contained in:
Julien BLACHE 2009-04-01 17:19:53 +02:00
parent 7ce2e75859
commit af893a95fb

View File

@ -38,7 +38,7 @@ fi
AC_DEFINE_UNQUOTED(CONFFILE,"${CONFFILE}",Where the config file is)
use_ffmpeg=false;
use_ffmpeg=true;
use_upnp=false;
use_ssl=false
use_iconv=true
@ -74,8 +74,8 @@ AC_ARG_ENABLE(musepack,[ --enable-musepack Enable Musepack support],
use_musepack=true;
CPPFLAGS="${CPPFLAGS} -DMUSEPACK")
AC_ARG_ENABLE(ffmpeg,[ --enable-ffmpeg Enable ffmpeg transcode support],
use_ffmpeg=true;)
AC_ARG_ENABLE(ffmpeg, AC_HELP_STRING([--disable-ffmpeg], [Disable ffmpeg transcoding plugin]),
use_ffmpeg=false)
AC_ARG_ENABLE(upnp,[ --enable-upnp Enable upnp support],
CPPFLAGS="${CPPFLAGS} -DUPNP"; use_upnp=true;)