changeset 3046:1127b4455bec libavcodec

Remove redundant --enable-shared-pp configure option and make the PP code use the standard --enable-shared option.
author diego
date Sat, 14 Jan 2006 18:07:36 +0000
parents c5e521489fdf
children 1dc89e24d9c2
files Makefile libpostproc/Makefile
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Jan 14 17:43:22 2006 +0000
+++ b/Makefile	Sat Jan 14 18:07:36 2006 +0000
@@ -290,7 +290,7 @@
 endif
 
 ifeq ($(CONFIG_PP),yes)
-ifeq ($(SHARED_PP),yes)
+ifeq ($(BUILD_SHARED),yes)
 EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF)
 else
 # LIBS += libpostproc/libpostproc.a ... should be fixed
--- a/libpostproc/Makefile	Sat Jan 14 17:43:22 2006 +0000
+++ b/libpostproc/Makefile	Sat Jan 14 18:07:36 2006 +0000
@@ -4,7 +4,7 @@
 VPATH=$(SRC_PATH)/libavcodec/libpostproc
 
 NAME=postproc
-ifeq ($(SHARED_PP),yes)
+ifeq ($(BUILD_SHARED),yes)
 LIBVERSION=$(SPPVERSION)
 LIBMAJOR=$(SPPMAJOR)
 endif
@@ -35,7 +35,7 @@
 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 @@
 	$(RANLIB) $@
 
 install: all
-ifeq ($(SHARED_PP),yes)
+ifeq ($(BUILD_SHARED),yes)
 ifeq ($(CONFIG_WIN32),yes)
 	install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
 else