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 --- content/content.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'content/content.h') diff --git a/content/content.h b/content/content.h index 0eb7c3e4c..8c6235342 100644 --- a/content/content.h +++ b/content/content.h @@ -16,35 +16,35 @@ #define _NETSURF_DESKTOP_CONTENT_H_ #include -#include "netsurf/utils/config.h" -#include "netsurf/content/content_type.h" -#include "netsurf/css/css.h" -#include "netsurf/render/html.h" -#include "netsurf/render/textplain.h" +#include "utils/config.h" +#include "content/content_type.h" +#include "css/css.h" +#include "render/html.h" +#include "render/textplain.h" #ifdef WITH_JPEG -#include "netsurf/image/jpeg.h" +#include "image/jpeg.h" #endif #ifdef WITH_GIF -#include "netsurf/image/gif.h" +#include "image/gif.h" #endif #ifdef WITH_BMP -#include "netsurf/image/bmp.h" -#include "netsurf/image/ico.h" +#include "image/bmp.h" +#include "image/ico.h" #endif #ifdef WITH_PLUGIN -#include "netsurf/riscos/plugin.h" +#include "riscos/plugin.h" #endif #ifdef WITH_MNG -#include "netsurf/image/mng.h" +#include "image/mng.h" #endif #ifdef WITH_SPRITE -#include "netsurf/riscos/sprite.h" +#include "riscos/sprite.h" #endif #ifdef WITH_DRAW -#include "netsurf/riscos/draw.h" +#include "riscos/draw.h" #endif #ifdef WITH_ARTWORKS -#include "netsurf/riscos/artworks.h" +#include "riscos/artworks.h" #endif -- cgit v1.2.3