diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-04 12:25:02 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-03-04 12:25:02 +0100 |
commit | 03148fd1743fca98c2f4b5920b796f381e820045 (patch) | |
tree | d8e60307b96473352ed7dcd74f3c90e826512be5 /libavformat | |
parent | 523b12affc0083f0282a80a8d12c75c16b6af604 (diff) | |
download | ffmpeg-03148fd1743fca98c2f4b5920b796f381e820045.tar.gz |
buildsys: only include log2_tab per library for shared builds
Fix linking failures with -all_load due to multiple log2_tabs
Signed-off-by: Carl Eugen Hoyos <cehoyos@ag.or.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 03d7e2357b..73ada77275 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -13,7 +13,6 @@ OBJS = allformats.o \ cutils.o \ id3v1.o \ id3v2.o \ - log2_tab.o \ metadata.o \ mux.o \ options.o \ @@ -48,6 +47,7 @@ OBJS-$(CONFIG_RTPDEC) += rdt.o \ rtpdec_xiph.o \ srtp.o OBJS-$(CONFIG_RTPENC_CHAIN) += rtpenc_chain.o rtp.o +OBJS-$(CONFIG_SHARED) += log2_tab.o # muxers/demuxers OBJS-$(CONFIG_A64_MUXER) += a64.o rawenc.o |