[Mplayer-cvslog] CVS: main/postproc postprocess.c,1.77,1.78 Makefile,1.12,1.13

Michael Niedermayer CVS michael at mplayerhq.hu
Tue Feb 11 22:13:33 CET 2003


Update of /cvsroot/mplayer/main/postproc
In directory mail:/var/tmp.root/cvs-serv15093

Modified Files:
	postprocess.c Makefile 
Log Message:
avoid #include "../


Index: postprocess.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/postprocess.c,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- postprocess.c	23 Jan 2003 04:19:24 -0000	1.77
+++ postprocess.c	11 Feb 2003 21:13:30 -0000	1.78
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2001-2002 Michael Niedermayer (michaelni at gmx.at)
+    Copyright (C) 2001-2003 Michael Niedermayer (michaelni at gmx.at)
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -62,7 +62,7 @@
 
 //Changelog: use the CVS log
 
-#include "../config.h"
+#include "config.h"
 #include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -80,7 +80,7 @@
 #endif
 #include "postprocess.h"
 #include "postprocess_internal.h"
-#include "../mangle.h"
+#include "mangle.h"
 
 #define MIN(a,b) ((a) > (b) ? (b) : (a))
 #define MAX(a,b) ((a) < (b) ? (b) : (a))

Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/Makefile,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- Makefile	18 Nov 2002 10:39:22 -0000	1.12
+++ Makefile	11 Feb 2003 21:13:30 -0000	1.13
@@ -22,7 +22,7 @@
 # .PHONY: all clean
 
 .c.o:
-	$(CC) -c $(CFLAGS) -o $@ $<
+	$(CC) -c $(CFLAGS) -I.. -o $@ $<
 
 all:    $(SWSLIB) $(PPLIB) $(SPPLIB)
 
@@ -45,7 +45,7 @@
 
 ifeq ($(SHARED_PP),yes)
 postprocess_pic.o: postprocess.c
-	$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
+	$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -o $@ $<
 
 $(SPPLIB): $(SPPOBJS)
 	$(CC) -shared -Wl,-soname,$(SPPLIB).0 \



More information about the MPlayer-cvslog mailing list