1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

Remove redundant --enable-shared-pp configure option and make the PP code

use the standard --enable-shared option.

Originally committed as revision 4858 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2006-01-14 18:07:36 +00:00
parent dd1a74d25d
commit ba64106a39
3 changed files with 6 additions and 15 deletions

View File

@@ -4,7 +4,7 @@ include ../../config.mak
VPATH=$(SRC_PATH)/libavcodec/libpostproc
NAME=postproc
ifeq ($(SHARED_PP),yes)
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(SPPVERSION)
LIBMAJOR=$(SPPMAJOR)
endif
@@ -35,7 +35,7 @@ dep: depend
depend:
$(CC) -MM $(CFLAGS) postprocess.c 1>.depend
ifeq ($(SHARED_PP),yes)
ifeq ($(BUILD_SHARED),yes)
postprocess_pic.o: postprocess.c
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $<
@@ -49,7 +49,7 @@ $(LIB): $(OBJS)
$(RANLIB) $@
install: all
ifeq ($(SHARED_PP),yes)
ifeq ($(BUILD_SHARED),yes)
ifeq ($(CONFIG_WIN32),yes)
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
else