62f095f046
This is the first patch of a sequence to move the Type 2 charstring processing capability from the `cff' module to the `psaux' module. NOTE: Does not compile! * src/cff/cf2*: Move these files to... * src/psaux/cf2*: Here. * src/cff/Jamfile (_sources), src/cff/rules.mk (CFF_DRV_SRC, CFF_DRV_H), src/cff/cff.c, src/cff/cffgload.c: Remove file references. * src/psaux/Jamfile (_sources), src/psaux/rules.mk, src/psaux/psaux.c (PSAUX_DRV_SRC, PSAUX_DRV_H): Add file references.
31 lines
1.4 KiB
C
31 lines
1.4 KiB
C
/***************************************************************************/
|
|
/* */
|
|
/* cff.c */
|
|
/* */
|
|
/* FreeType OpenType driver component (body only). */
|
|
/* */
|
|
/* Copyright 1996-2017 by */
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
/* */
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
/* this file you indicate that you have read the license and */
|
|
/* understand and accept it fully. */
|
|
/* */
|
|
/***************************************************************************/
|
|
|
|
|
|
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
|
#include <ft2build.h>
|
|
|
|
#include "cffcmap.c"
|
|
#include "cffdrivr.c"
|
|
#include "cffgload.c"
|
|
#include "cffparse.c"
|
|
#include "cffpic.c"
|
|
#include "cffload.c"
|
|
#include "cffobjs.c"
|
|
|
|
/* END */
|