ref: dda1e93db8cd47717869292203cd9ea12b96291f
parent: 4404ec4ef5b8dfc7edcd92bada5e5e4bcbc9a81a
author: Werner Lemberg <[email protected]>
date: Sat Oct 20 04:34:57 EDT 2012
[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'.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-10-20 Werner Lemberg <[email protected]>
+
+ [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 <[email protected]>
[cff] Fix more value errors and improve tracing.
--- 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"
--- 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"
--- 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"
--- 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