changeset 34729:d577b2bcd37d

configure: Fix libpostproc detection.
author diego
date Thu, 15 Mar 2012 15:20:02 +0000
parents a28c4ba97171
children 6d9ca3bfd020
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Thu Mar 15 15:19:51 2012 +0000
+++ b/configure	Thu Mar 15 15:20:02 2012 +0000
@@ -6761,7 +6761,7 @@
 echocheck "libpostproc"
 if test "$postproc" = auto ; then
   postproc=no
-  if test "$ffmpeg_a" = yes ; then
+  if test "$ffmpeg_a" = yes && test -d ffmpeg/libpostproc ; then
     postproc=yes
   elif $_pkg_config --exists libpostproc ; then
     inc_postproc=$($_pkg_config --cflags libpostproc)