diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-25 18:25:41 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-28 17:41:54 +0100 |
commit | 8a34f3659371680ca523aecfd9098c28f0f809eb (patch) | |
tree | 24eb4a6c466c956a4f3fe33b9accd8cd4ded874d /configure | |
parent | 53618054b64ce4dab459d23a7efebe9d5afc4855 (diff) | |
download | ffmpeg-8a34f3659371680ca523aecfd9098c28f0f809eb.tar.gz |
build: Add version numbers to "Requires" entries in pkg-config files
The (required) version numbers disappeared after edb4348732.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 6 insertions, 14 deletions
@@ -5396,11 +5396,7 @@ print_enabled_components libavformat/protocol_list.c URLProtocol url_protocols $ test -n "$WARNINGS" && printf "\n$WARNINGS" -# build pkg-config files - -lib_version(){ - eval printf "\"lib${1} >= \$LIB$(toupper ${1})_VERSION, \"" -} +# Settings for pkg-config files cat > avbuild/config.sh <<EOF # Automatically generated by configure - do not modify! @@ -5411,15 +5407,6 @@ includedir=$incdir source_path=${source_path} LIBPREF=${LIBPREF} LIBSUF=${LIBSUF} - -requires_avutil="$(map 'lib_version $v' $(echo $avutil_deps))" -requires_avcodec="$(map 'lib_version $v' $(echo $avcodec_deps))" -requires_avformat="$(map 'lib_version $v' $(echo $avformat_deps))" -requires_avdevice="$(map 'lib_version $v' $(echo $avdevice_deps))" -requires_avfilter="$(map 'lib_version $v' $(echo $avfilter_deps))" -requires_avresample="$(map 'lib_version $v' $(echo $avresample_deps))" -requires_swscale="$(map 'lib_version $v' $(echo $swscale_deps))" - extralibs_avutil="$LIBRT $LIBM" extralibs_avcodec="$extralibs" extralibs_avformat="$extralibs" @@ -5428,3 +5415,8 @@ extralibs_avfilter="$extralibs" extralibs_avresample="$LIBM" extralibs_swscale="$LIBM" EOF + +for lib in $LIBRARY_LIST; do + lib_deps="$(eval echo \$${lib}_deps)" + echo ${lib}_deps=\"$lib_deps\" >> avbuild/config.sh +done |