# HG changeset patch # User michael # Date 1044998010 0 # Node ID 1e8f3293a822790d856c578bf7a98df8fd94692f # Parent f7be067d683e49baadd32ebd090528a63e240767 avoid #include "../ diff -r f7be067d683e -r 1e8f3293a822 postproc/Makefile --- a/postproc/Makefile Tue Feb 11 21:12:16 2003 +0000 +++ b/postproc/Makefile Tue Feb 11 21:13:30 2003 +0000 @@ -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 \ diff -r f7be067d683e -r 1e8f3293a822 postproc/postprocess.c --- a/postproc/postprocess.c Tue Feb 11 21:12:16 2003 +0000 +++ b/postproc/postprocess.c Tue Feb 11 21:13:30 2003 +0000 @@ -1,5 +1,5 @@ /* - Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at) + Copyright (C) 2001-2003 Michael Niedermayer (michaelni@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 #include #include @@ -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))