diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-11-15 01:36:16 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-11-15 01:36:16 +0000 |
commit | 9464f2b836c81feccd23d9ff6da99c1a598cbcd3 (patch) | |
tree | 69096823517b7c1a621c271747a4c63d33c03df5 | |
parent | eaa53b957b6076ee7f598274a1498d8c7ca7130e (diff) | |
download | ffmpeg-9464f2b836c81feccd23d9ff6da99c1a598cbcd3.tar.gz |
Move BeOS extralibs handling into configure.
Originally committed as revision 7082 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | configure | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -35,10 +35,6 @@ ALLPROGS=$(addsuffix $(EXESUF), $(BASENAMES)) ALLPROGS_G=$(addsuffix _g$(EXESUF), $(BASENAMES)) ALLMANPAGES=$(addsuffix .1, $(BASENAMES)) -ifeq ($(CONFIG_AUDIO_BEOS),yes) -EXTRALIBS+=-lmedia -lbe -endif - ifeq ($(BUILD_SHARED),yes) DEP_LIBS=libavcodec/$(SLIBPREF)avcodec$(SLIBSUF) libavformat/$(SLIBPREF)avformat$(SLIBSUF) else @@ -1540,6 +1540,10 @@ if enabled vhook; then check_ldflags -export-dynamic fi +if enabled audio_beos; then + add_extralibs "-lmedia -lbe" +fi + ########################################## # imlib check |