From 6807b4208a27d9037229b16f31cc409d15a992f5 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Wed, 30 May 2007 22:39:54 +0000 Subject: Remove the netsurf/ from the include paths and rationalise use of <> vs "" in includes NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307 --- riscos/buffer.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'riscos/buffer.c') diff --git a/riscos/buffer.c b/riscos/buffer.c index 4351acf3e..ae8426e9d 100644 --- a/riscos/buffer.c +++ b/riscos/buffer.c @@ -11,15 +11,15 @@ #include #include "oslib/colourtrans.h" #include "oslib/os.h" -#include "oslib/osspriteop.h" +#include #include "oslib/wimp.h" #include "oslib/wimpreadsysinfo.h" -#include "netsurf/riscos/buffer.h" -#include "netsurf/riscos/gui.h" -#include "netsurf/riscos/options.h" -#include "netsurf/riscos/tinct.h" -#include "netsurf/riscos/wimp.h" -#include "netsurf/utils/log.h" +#include "riscos/buffer.h" +#include "riscos/gui.h" +#include "riscos/options.h" +#include "riscos/tinct.h" +#include "riscos/wimp.h" +#include "utils/log.h" //#define NDEBUG #define BUFFER_EXCLUSIVE_USER_REDRAW "Only support pure user redraw (faster)" //#define BUFFER_EMULATE_32BPP "Redirect to a 32bpp sprite and plot with Tinct" -- cgit v1.2.3