You've already forked FFmpeg
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user