[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/libpostproc Makefile, 1.32, 1.33
Diego Biurrun CVS
diego
Sat Jan 14 19:07:38 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec/libpostproc
In directory mail:/var2/tmp/cvs-serv5221/libavcodec/libpostproc
Modified Files:
Makefile
Log Message:
Remove redundant --enable-shared-pp configure option and make the PP code
use the standard --enable-shared option.
Index: Makefile
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/libpostproc/Makefile,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- Makefile 14 Jan 2006 15:54:58 -0000 1.32
+++ Makefile 14 Jan 2006 18:07:36 -0000 1.33
@@ -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
More information about the ffmpeg-cvslog
mailing list