What steps will reproduce the problem? 1. ffmpeg library not installed 2. configure --without-ffmpeg 3.
What is the expected output? What do you see instead? configure script still try to use ffmpeg.
What version of the product are you using? On what operating system? Revision 416 on Cygwin, Windows 7 32bit
Please provide any additional information below. By changing the code in configure
Check whether --with-ffmpeg was given.
if test "${with_ffmpeg+set}" = set; then : withval=$with_ffmpeg; with_ffmpeg=check fi
to
Check whether --with-ffmpeg was given.
if test "${with_ffmpeg+set}" = set; then : withval=$with_ffmpeg; else with_ffmpeg=check fi
it works. Not sure if it is completely correct though.
Comment #1
Posted on Feb 6, 2012 by Quick CatThat's because ffmpeg is now disabled by default, and the flag was changed to --with-ffmpeg to enable it.
Status: Invalid
Labels:
Type-Defect
Priority-Medium