# HG changeset patch # User diego # Date 1331824802 0 # Node ID d577b2bcd37d4b111108139e9b51803c3f982787 # Parent a28c4ba97171231a3e6b909ba0f32f7e006042da configure: Fix libpostproc detection. diff -r a28c4ba97171 -r d577b2bcd37d configure --- 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)