# HG changeset patch # User diego # Date 1137262056 0 # Node ID 1127b4455bec0b7adcb8927e25deac160f279348 # Parent c5e521489fdfd8c92ffff17b94f394adbccff2ec Remove redundant --enable-shared-pp configure option and make the PP code use the standard --enable-shared option. diff -r c5e521489fdf -r 1127b4455bec Makefile --- 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 diff -r c5e521489fdf -r 1127b4455bec libpostproc/Makefile --- 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