diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-05-12 12:32:33 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-05-12 12:32:33 +0000 |
commit | 445ad18d65156b57e694c7cc9c66dcdf26056166 (patch) | |
tree | 2d14a8b821bf06ef90442c3f1b5c53459345cd7c /Makefile | |
parent | aea22133c47a90fe26482df46634d89a2c543ad5 (diff) | |
download | ffmpeg-445ad18d65156b57e694c7cc9c66dcdf26056166.tar.gz |
* link libfaad when needed
Originally committed as revision 1862 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -47,6 +47,14 @@ ifeq ($(CONFIG_VORBIS),yes) EXTRALIBS+=-logg -lvorbis -lvorbisenc endif +ifeq ($(CONFIG_FAAD),yes) +ifeq ($(CONFIG_FAADBIN),yes) +# no libs needed +else +EXTRALIBS += -lfaad +endif +endif + ifeq ($(BUILD_VHOOK),yes) VHOOK=videohook INSTALLVHOOK=install-vhook |