Set AM_CONDITIONAL(HAVE_FFMPEG) to test for ffmpeg = yes versus ffmpeg != 'no'

which can be touchy.  This really needs a run-through to make sure it's
consistent in the entire script.

Originally committed to SVN as r2193.
This commit is contained in:
Amar Takhar 2008-05-15 03:06:44 +00:00
parent b9e9ab7906
commit 74913197fb
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ AC_SUBST(SWSCALE_LDFLAGS)
AC_SUBST(AVCODEC_LDFLAGS)
AC_SUBST(AVFORMAT_LDFLAGS)
AC_SUBST(AVUTIL_LDFLAGS)
AM_CONDITIONAL([HAVE_FFMPEG], [test "$with_ffmpeg" != "no"])
AM_CONDITIONAL([HAVE_FFMPEG], [test "$with_ffmpeg" = "yes"])