[autofit, sfnt] Fix for `make multi'.
* src/autofit/afshaper.c: Include FT_ADVANCE_H, to use FT_Get_Advance() in it. * src/sfnt/ttcmap.c: Include FT_SERVICE_POSTSCRIPT_CMAPS_H to use PS_Unicodes in it, also include `ttpost.h' to use tt_face_get_ps_name() in it.
This commit is contained in:
parent
babe13ec5c
commit
21658c31f7
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2017-09-12 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
[autofit, sfnt] Fix for `make multi'.
|
||||
|
||||
* src/autofit/afshaper.c: Include FT_ADVANCE_H, to use
|
||||
FT_Get_Advance() in it.
|
||||
* src/sfnt/ttcmap.c: Include FT_SERVICE_POSTSCRIPT_CMAPS_H
|
||||
to use PS_Unicodes in it, also include `ttpost.h' to use
|
||||
tt_face_get_ps_name() in it.
|
||||
|
||||
2017-09-11 Azzuro <azzuro@team-mediaportal.com>
|
||||
|
||||
[build] Improve builds with different MS Visual Studio versions.
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include <ft2build.h>
|
||||
#include FT_FREETYPE_H
|
||||
#include FT_ADVANCES_H
|
||||
#include "afglobal.h"
|
||||
#include "aftypes.h"
|
||||
#include "afshaper.h"
|
||||
|
|
|
@ -23,8 +23,10 @@
|
|||
|
||||
#include FT_INTERNAL_VALIDATE_H
|
||||
#include FT_INTERNAL_STREAM_H
|
||||
#include FT_SERVICE_POSTSCRIPT_CMAPS_H
|
||||
#include "ttload.h"
|
||||
#include "ttcmap.h"
|
||||
#include "ttpost.h"
|
||||
#include "sfntpic.h"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue