summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/xetexdir
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/xetexdir')
-rw-r--r--Build/source/texk/web2c/xetexdir/ChangeLog6
-rw-r--r--Build/source/texk/web2c/xetexdir/XeTeXFontInst.h5
-rw-r--r--Build/source/texk/web2c/xetexdir/XeTeX_ext.h2
-rw-r--r--Build/source/texk/web2c/xetexdir/pdfimage.cpp4
4 files changed, 11 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/xetexdir/ChangeLog b/Build/source/texk/web2c/xetexdir/ChangeLog
index 5ea1ca2046d..6214af6775e 100644
--- a/Build/source/texk/web2c/xetexdir/ChangeLog
+++ b/Build/source/texk/web2c/xetexdir/ChangeLog
@@ -1,3 +1,9 @@
+2013-06-28 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * XeTeXFontInst.h: Include "XeTeXFontMgr.h" before <stdio.h>.
+ * XeTeX_ext.h: Include <w2c/c-auto.h> before <unicode/utypes.h>.
+ * pdfimage.cpp: Include "XeTeX_ext.h" before "pdfimage.h".
+
2013-05-30 Peter Breitenlohner <peb@mppmu.mpg.de>
* pdfimage.cpp [MINGW]: Include kpathsea/mingw32.h (via
diff --git a/Build/source/texk/web2c/xetexdir/XeTeXFontInst.h b/Build/source/texk/web2c/xetexdir/XeTeXFontInst.h
index be2759ffd49..119f42808a9 100644
--- a/Build/source/texk/web2c/xetexdir/XeTeXFontInst.h
+++ b/Build/source/texk/web2c/xetexdir/XeTeXFontInst.h
@@ -43,14 +43,13 @@ authorization from the copyright holders.
#ifndef __XeTeXFontInst_H
#define __XeTeXFontInst_H
+#include "XeTeXFontMgr.h"
+
#include <stdio.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_TRUETYPE_TABLES_H
-#include "XeTeXFontMgr.h"
-#include "XeTeX_ext.h"
-
#define MATH_TAG HB_TAG('M','A','T','H')
// create specific subclasses for each supported platform
diff --git a/Build/source/texk/web2c/xetexdir/XeTeX_ext.h b/Build/source/texk/web2c/xetexdir/XeTeX_ext.h
index d5cb931c692..c6e0b953d2d 100644
--- a/Build/source/texk/web2c/xetexdir/XeTeX_ext.h
+++ b/Build/source/texk/web2c/xetexdir/XeTeX_ext.h
@@ -35,8 +35,8 @@ authorization from the copyright holders.
#ifndef __XETEXEXT_H
#define __XETEXEXT_H
-#include <unicode/utypes.h>
#include <w2c/c-auto.h> /* needed for SIZEOF_LONG and NO_DUMP_SHARE */
+#include <unicode/utypes.h>
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/Build/source/texk/web2c/xetexdir/pdfimage.cpp b/Build/source/texk/web2c/xetexdir/pdfimage.cpp
index 8eb32a63a92..8b7bc40d167 100644
--- a/Build/source/texk/web2c/xetexdir/pdfimage.cpp
+++ b/Build/source/texk/web2c/xetexdir/pdfimage.cpp
@@ -30,10 +30,10 @@ use or other dealings in this Software without prior written
authorization from the copyright holders.
\****************************************************************************/
-#include "pdfimage.h"
-
#include "XeTeX_ext.h"
+#include "pdfimage.h"
+
#include "PDFDoc.h"
#include "Catalog.h"
#include "Page.h"