diff options
author | Derk-Jan Hartman <d.hartman@student.utwente.nl> | 2005-10-02 15:47:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-10-02 15:47:08 +0000 |
commit | 672cbd9aa8c6f75c377e0ed37b046f60291c470d (patch) | |
tree | f1921fc8fc72b9868c51aa0c4b45d76e661351c9 /configure | |
parent | 495d6cdcfd36fd2fd5955577850e3c7e96b488b7 (diff) | |
download | ffmpeg-672cbd9aa8c6f75c377e0ed37b046f60291c470d.tar.gz |
Add the flags for faac and mp3lame to $extralibs in configure, so they
are reported in the pkg-config of libavcodec.
patch by Derk-Jan Hartman <d.hartman - at - student - dot - utwente - dot - nl>
Originally committed as revision 4625 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -489,7 +489,7 @@ for opt do ;; --enable-libgsm) libgsm="yes" ;; - --enable-mp3lame) mp3lame="yes" + --enable-mp3lame) mp3lame="yes"; extralibs="$extralibs -lmp3lame" ;; --enable-libogg) libogg="yes" ;; @@ -501,7 +501,7 @@ for opt do ;; --enable-faadbin) faadbin="yes" ;; - --enable-faac) faac="yes" + --enable-faac) faac="yes"; extralibs="$extralibs -lfaac" ;; --enable-xvid) xvid="yes" ;; |