Commit dda1e93db8cd47717869292203cd9ea12b96291f

Werner Lemberg 2012-10-20T08:34:57

[autofit] Fix `make multi CC=c++'. * src/autofit/aflatin.c, src/autofit/aflatin2.c: Include `afglobal.h'. * src/autofit/afloader.c: Fix order of header files. * src/autofit/afmodule.c: Include `afglobal.h' and `aferrors.h'.

diff --git a/ChangeLog b/ChangeLog
index 682b7c7..a6aeca3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-10-20  Werner Lemberg  <wl@gnu.org>
+
+	[autofit] Fix `make multi CC=c++'.
+
+	* src/autofit/aflatin.c, src/autofit/aflatin2.c: Include
+	`afglobal.h'.
+	* src/autofit/afloader.c: Fix order of header files.
+	* src/autofit/afmodule.c: Include `afglobal.h' and `aferrors.h'.
+
 2012-10-19  Werner Lemberg  <wl@gnu.org>
 
 	[cff] Fix more value errors and improve tracing.
diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c
index 869a3d8..a5c1e7d 100644
--- a/src/autofit/aflatin.c
+++ b/src/autofit/aflatin.c
@@ -20,6 +20,7 @@
 #include FT_ADVANCES_H
 #include FT_INTERNAL_DEBUG_H
 
+#include "afglobal.h"
 #include "aflatin.h"
 #include "aferrors.h"
 
diff --git a/src/autofit/aflatin2.c b/src/autofit/aflatin2.c
index 78ac920..b173cb7 100644
--- a/src/autofit/aflatin2.c
+++ b/src/autofit/aflatin2.c
@@ -18,6 +18,7 @@
 
 #include FT_ADVANCES_H
 
+#include "afglobal.h"
 #include "aflatin.h"
 #include "aflatin2.h"
 #include "aferrors.h"
diff --git a/src/autofit/afloader.c b/src/autofit/afloader.c
index 29a2aed..f280bed 100644
--- a/src/autofit/afloader.c
+++ b/src/autofit/afloader.c
@@ -16,9 +16,9 @@
 /***************************************************************************/
 
 
+#include "afglobal.h"
 #include "afloader.h"
 #include "afhints.h"
-#include "afglobal.h"
 #include "aferrors.h"
 #include "afmodule.h"
 
diff --git a/src/autofit/afmodule.c b/src/autofit/afmodule.c
index ea56115..f46cff9 100644
--- a/src/autofit/afmodule.c
+++ b/src/autofit/afmodule.c
@@ -16,8 +16,10 @@
 /***************************************************************************/
 
 
+#include "afglobal.h"
 #include "afmodule.h"
 #include "afloader.h"
+#include "aferrors.h"
 #include "afpic.h"
 
 #ifdef FT_DEBUG_AUTOFIT