From 03e5755b93e90cc4c09daad4c79b6016bf4ce43c Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 12 Jun 2013 13:46:21 +0200 Subject: Move header files into separate include directory. --- apps/mudraw.c | 4 ++-- apps/mutool.c | 2 +- apps/pdfapp.h | 3 +-- apps/pdfclean.c | 4 ++-- apps/pdfextract.c | 4 ++-- apps/pdfinfo.c | 4 ++-- apps/pdfposter.c | 4 ++-- apps/pdfshow.c | 2 +- apps/x11_image.c | 2 +- 9 files changed, 14 insertions(+), 15 deletions(-) (limited to 'apps') diff --git a/apps/mudraw.c b/apps/mudraw.c index f2fa53a7..e38aa99b 100644 --- a/apps/mudraw.c +++ b/apps/mudraw.c @@ -2,8 +2,8 @@ * mudraw -- command line tool for drawing pdf/xps/cbz documents */ -#include "fitz.h" -#include "mupdf-internal.h" +#include "mupdf/fitz.h" +#include "mupdf/pdf-internal.h" /* for mujstest */ #ifdef _MSC_VER #include diff --git a/apps/mutool.c b/apps/mutool.c index 1d7fb9dd..62355f32 100644 --- a/apps/mutool.c +++ b/apps/mutool.c @@ -2,7 +2,7 @@ * mutool -- swiss army knife of pdf manipulation tools */ -#include +#include "mupdf/fitz.h" #ifdef _MSC_VER #define main main_utf8 diff --git a/apps/pdfapp.h b/apps/pdfapp.h index 9c8a0ee9..ec87ab12 100644 --- a/apps/pdfapp.h +++ b/apps/pdfapp.h @@ -1,8 +1,7 @@ #ifndef PDFAPP_H #define PDFAPP_H -#include "fitz.h" -#include "mupdf-internal.h" +#include "mupdf/pdf-internal.h" /* * Utility object for handling a pdf application / view diff --git a/apps/pdfclean.c b/apps/pdfclean.c index 78570650..8d1748ae 100644 --- a/apps/pdfclean.c +++ b/apps/pdfclean.c @@ -9,8 +9,8 @@ * TODO: linearize document for fast web view */ -#include "fitz.h" -#include "mupdf-internal.h" +#include "mupdf/fitz.h" +#include "mupdf/pdf-internal.h" static pdf_document *xref = NULL; static fz_context *ctx = NULL; diff --git a/apps/pdfextract.c b/apps/pdfextract.c index f17edff2..d82f045b 100644 --- a/apps/pdfextract.c +++ b/apps/pdfextract.c @@ -2,8 +2,8 @@ * pdfextract -- the ultimate way to extract images and fonts from pdfs */ -#include "mupdf.h" -#include "mupdf-internal.h" +#include "mupdf/pdf.h" +#include "mupdf/pdf-internal.h" static pdf_document *doc = NULL; static fz_context *ctx = NULL; diff --git a/apps/pdfinfo.c b/apps/pdfinfo.c index 18463304..fdc23e99 100644 --- a/apps/pdfinfo.c +++ b/apps/pdfinfo.c @@ -3,8 +3,8 @@ * Print information about the input pdf. */ -#include "fitz.h" -#include "mupdf-internal.h" +#include "mupdf/fitz.h" +#include "mupdf/pdf-internal.h" pdf_document *xref; fz_context *ctx; diff --git a/apps/pdfposter.c b/apps/pdfposter.c index b9514892..c92de7aa 100644 --- a/apps/pdfposter.c +++ b/apps/pdfposter.c @@ -9,8 +9,8 @@ * TODO: linearize document for fast web view */ -#include "fitz.h" -#include "mupdf-internal.h" +#include "mupdf/fitz.h" +#include "mupdf/pdf-internal.h" static int x_factor = 0; static int y_factor = 0; diff --git a/apps/pdfshow.c b/apps/pdfshow.c index 02cf6dbb..78573e10 100644 --- a/apps/pdfshow.c +++ b/apps/pdfshow.c @@ -2,7 +2,7 @@ * pdfshow -- the ultimate pdf debugging tool */ -#include "mupdf-internal.h" +#include "mupdf/pdf-internal.h" static pdf_document *doc = NULL; static fz_context *ctx = NULL; diff --git a/apps/x11_image.c b/apps/x11_image.c index e8cd4455..4f2db2e8 100644 --- a/apps/x11_image.c +++ b/apps/x11_image.c @@ -12,7 +12,7 @@ #define noSHOWINFO -#include "fitz.h" +#include "mupdf/fitz.h" #include #include -- cgit v1.2.3