[FFmpeg-devel] [PATCH] configure: dont expand dependencies in pkgconfig files

Michael Niedermayer michaelni at gmx.at
Tue May 13 23:14:28 CEST 2014


libavdevice may depend on libavfilter
but it depends on how libavfilter is build if further dependancies like libpostproc are there

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
 configure |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 01ac82b..e61f941 100755
--- a/configure
+++ b/configure
@@ -5148,7 +5148,7 @@ expand_deps(){
 #we have to remove gpl from the deps here as some code assumes all lib deps are libs
 postproc_deps="$(filter_out 'gpl' $postproc_deps)"
 
-map 'expand_deps $v' $LIBRARY_LIST
+map 'unique ${v}_deps' $LIBRARY_LIST
 
 echo "install prefix            $prefix"
 echo "source path               $source_path"
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list