Browse Source

Move BeOS extralibs handling into configure.

Originally committed as revision 7082 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 18 years ago
parent
commit
9464f2b836
2 changed files with 4 additions and 4 deletions
  1. +0
    -4
      Makefile
  2. +4
    -0
      configure

+ 0
- 4
Makefile View File

@@ -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


+ 4
- 0
configure View File

@@ -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



Loading…
Cancel
Save