From ab536425b52c374beaa38d360ffdcdb42a3fcaa9 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 31 Oct 2002 10:21:44 +0000 Subject: disabling compilation of .so if its not needed, gcc 3.1 seems to have problems with it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7995 b3059339-0415-0410-9bf9-f77b7e298cf2 --- postproc/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'postproc') diff --git a/postproc/Makefile b/postproc/Makefile index b1e5940f3d..457e2d1c9d 100644 --- a/postproc/Makefile +++ b/postproc/Makefile @@ -2,8 +2,10 @@ include ../config.mak SWSLIB = libswscale.a +ifeq ($(SHARED_PP),yes) SPPLIB = libpostproc.so SPPVERSION = 0.0.1 +endif PPLIB = libpostproc.a SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c @@ -41,13 +43,15 @@ depend: cs_test: $(CS_TEST_OBJS) $(CC) $(CS_TEST_OBJS) -o cs_test +ifeq ($(SHARED_PP),yes) postprocess_pic.o: postprocess.c $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $< $(SPPLIB): $(SPPOBJS) $(CC) -shared -Wl,-soname,$(SPPLIB).0 \ -o $(SPPLIB) $(SPPOBJS) - +endif + $(PPLIB): $(PPOBJS) $(AR) r $(PPLIB) $(PPOBJS) -- cgit v1.2.3