diff options
author | François Revol <revol@free.fr> | 2003-03-13 15:05:54 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-03-13 15:05:54 +0000 |
commit | d1db8623784d3ed6385133aa6f34ab5e24d82212 (patch) | |
tree | 30d90b30786bd23585350d0c73a1e90178cb7022 /Makefile | |
parent | e13f860ac8a5a7d803059d1553773cf2a446d3f2 (diff) | |
download | ffmpeg-d1db8623784d3ed6385133aa6f34ab5e24d82212.tar.gz |
fix build issue with --enable-shared & --enable-vorbis
(should be reverted if ilbavformat ever gets really built as a shared lib)
Originally committed as revision 1680 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,10 +41,11 @@ DEP_LIBS=libavcodec/$(LIBPREF)avcodec$(LIBSUF) libavformat/$(LIBPREF)avformat$(L ifeq ($(CONFIG_MP3LAME),yes) EXTRALIBS+=-lmp3lame endif +endif + ifeq ($(CONFIG_VORBIS),yes) EXTRALIBS+=-logg -lvorbis -lvorbisenc endif -endif ifeq ($(BUILD_VHOOK),yes) VHOOK=videohook |