summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-29 11:21:43 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-29 11:21:43 +0000
commitcaa57f98bd032f4b65cd5b394dbd8bd2d748eb8a (patch)
tree6fd52aaddb59eb5089507a6b7b7419215a361968 /postproc
parent7613c12c246de1c326a14c7a5bd1e7afa66e47a5 (diff)
downloadmpv-caa57f98bd032f4b65cd5b394dbd8bd2d748eb8a.tar.bz2
mpv-caa57f98bd032f4b65cd5b394dbd8bd2d748eb8a.tar.xz
-fomit-frame-pointer is needed for the PIC code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7957 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/Makefile b/postproc/Makefile
index 1c2d244ce0..b1e5940f3d 100644
--- a/postproc/Makefile
+++ b/postproc/Makefile
@@ -42,7 +42,7 @@ cs_test: $(CS_TEST_OBJS)
$(CC) $(CS_TEST_OBJS) -o cs_test
postprocess_pic.o: postprocess.c
- $(CC) -c $(CFLAGS) -fPIC -DPIC -o $@ $<
+ $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
$(SPPLIB): $(SPPOBJS)
$(CC) -shared -Wl,-soname,$(SPPLIB).0 \