diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-12-12 20:13:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-12-12 20:13:26 +0000 |
commit | 7e303556ea09f8a5b590681290017ad9a0ebe55e (patch) | |
tree | 898cb0a35062056b851c41208d8918c7b12b1efc /configure | |
parent | e07d8929eb95c275cd946ef749adc862f9a73695 (diff) | |
download | ffmpeg-7e303556ea09f8a5b590681290017ad9a0ebe55e.tar.gz |
libpostproc has its own version number and should not use libavcodec's.
Originally committed as revision 7291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1910,8 +1910,8 @@ lavu_version=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h if test "$lshared" = "yes" ; then echo "BUILD_SHARED=yes" >> config.mak echo "PIC=-fPIC -DPIC" >> config.mak - echo "SPPMAJOR=${lavc_version%%.*}" >> config.mak - echo "SPPVERSION=$lavc_version" >> config.mak + echo "SPPMAJOR=${pp_version%%.*}" >> config.mak + echo "SPPVERSION=$pp_version" >> config.mak echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak echo "LAVCVERSION=$lavc_version" >> config.mak echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak @@ -2132,7 +2132,7 @@ includedir=\${prefix}/include Name: libpostproc Description: FFmpeg post processing library -Version: $lavc_version +Version: $pp_version Requires: Conflicts: Libs: -L\${libdir} -lpostproc @@ -2147,7 +2147,7 @@ includedir=\${pcfiledir}/libpostproc Name: libpostproc Description: FFmpeg post processing library -Version: $lavc_version +Version: $pp_version Requires: Conflicts: Libs: \${libdir}/${LIBPREF}postproc${LIBSUF} |