[SCM] libav/experimental: fix lib order and remove nonsense avcodec double linking

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:43:20 UTC 2013


The following commit has been merged in the experimental branch:
commit efd9e75cb0bf2e80ee0fdfd14689e26cd5888117
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Fri Mar 11 11:34:31 2005 +0000

    fix lib order and remove nonsense avcodec double linking
    
    Originally committed as revision 4029 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/Makefile b/libavformat/Makefile
index 5ecd750..4224542 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -55,8 +55,6 @@ endif
 ifeq ($(CONFIG_AUDIO_BEOS),yes)
 PPOBJS+= beosaudio.o
 EXTRALIBS+=-lbe -lmedia
-# this should be the default !
-EXTRALIBS+=-lavcodec -L../libavcodec
 endif
 
 ifeq ($(CONFIG_NETWORK),yes)
@@ -78,11 +76,11 @@ endif
 LIB= $(LIBPREF)avformat$(LIBSUF)
 ifeq ($(BUILD_SHARED),yes)
 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
-endif
 
-EXTRALIBS+=-lavcodec -L../libavcodec
+AVCLIBS+=-lavcodec -L../libavcodec
 ifeq ($(CONFIG_MP3LAME),yes)
-EXTRALIBS+=-lmp3lame
+AVCLIBS+=-lmp3lame
+endif
 endif
 
 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
@@ -96,10 +94,10 @@ $(LIB): $(OBJS) $(PPOBJS)
 
 $(SLIB): $(OBJS)
 ifeq ($(CONFIG_WIN32),yes)
-	$(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
+	$(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
 	-lib /machine:i386 /def:$(@:.dll=.def)
 else
-	$(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)
+	$(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
 endif
 
 depend: $(SRCS)

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list