step7967967 / boblight

Automatically exported from code.google.com/p/boblight
GNU General Public License v3.0
0 stars 0 forks source link

Configuration error when using --without-ffmpeg flag #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
That's because ffmpeg is now disabled by default, and the flag was changed to 
--with-ffmpeg to enable it.

Original comment by bob.loo...@gmail.com on 6 Feb 2012 at 8:48