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.
Original issue reported on code.google.com by pollis...@gmail.com on 6 Feb 2012 at 7:05
Original issue reported on code.google.com by
pollis...@gmail.com
on 6 Feb 2012 at 7:05