Commit 1fb8fe72 authored by kabi's avatar kabi

* by Thomas Sailer:

  otherwise ffmpeg doesn't compile if shared libs are requested and mp3lame
  is selected...


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@428 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f773bc91
...@@ -23,6 +23,7 @@ endif ...@@ -23,6 +23,7 @@ endif
ifeq ($(CONFIG_MP3LAME),yes) ifeq ($(CONFIG_MP3LAME),yes)
OBJS += mp3lameaudio.o OBJS += mp3lameaudio.o
EXTRALIBS += -lmp3lame
endif endif
ifeq ($(TARGET_GPROF),yes) ifeq ($(TARGET_GPROF),yes)
...@@ -74,7 +75,7 @@ $(LIB): $(OBJS) $(ASM_OBJS) ...@@ -74,7 +75,7 @@ $(LIB): $(OBJS) $(ASM_OBJS)
$(SLIB): $(OBJS) $(ASM_OBJS) $(SLIB): $(OBJS) $(ASM_OBJS)
rm -f $@ rm -f $@
$(CC) -shared -o $@ $(OBJS) $(ASM_OBJS) $(CC) -shared -o $@ $(OBJS) $(ASM_OBJS) $(EXTRALIBS)
ln -sf $@ libffmpeg.so ln -sf $@ libffmpeg.so
dsputil.o: dsputil.c dsputil.h dsputil.o: dsputil.c dsputil.h
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment