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 /libavcodec | |
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 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index b7ba13095d..0ef7e17daa 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -38,6 +38,11 @@ endif ifeq ($(CONFIG_FAAD),yes) OBJS+= faad.o +ifeq ($(CONFIG_FAADBIN),yes) +# no libs needed +else +EXTRALIBS += -lfaad +endif endif ifeq ($(CONFIG_PP),yes) |