diff configure @ 34729:d577b2bcd37d

configure: Fix libpostproc detection.
author diego
date Thu, 15 Mar 2012 15:20:02 +0000
parents 2d928e78d248
children 1088768591a5
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)