From 74913197fbdb69f50fb9b3c36c2f7dcb0e06f004 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Thu, 15 May 2008 03:06:44 +0000 Subject: [PATCH] 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. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 0a4fd7973..967ce1529 100644 --- a/configure.in +++ b/configure.in @@ -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"])