2000-01-02 10:41:30 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftbase.c */
|
|
|
|
/* */
|
2000-07-14 08:16:47 +02:00
|
|
|
/* Single object library component (body only). */
|
2000-01-02 10:41:30 +01:00
|
|
|
/* */
|
2001-06-28 19:49:10 +02:00
|
|
|
/* Copyright 1996-2001 by */
|
2000-01-02 10:41:30 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-05 07:26:15 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
2000-01-02 10:41:30 +01:00
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
#include <ft2build.h>
|
2000-01-02 10:41:30 +01:00
|
|
|
|
2001-03-20 12:14:24 +01:00
|
|
|
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
|
|
|
|
2002-02-24 06:26:57 +01:00
|
|
|
#include "ftutil.c"
|
|
|
|
#include "ftdbgmem.c"
|
|
|
|
#include "ftstream.c"
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "ftcalc.c"
|
* include/freetype/fttrigon.h, src/base/fttrigon.c, src/base/ftbase.c,
src/base/Jamfile, src/base/rules.mk: adding trigonometric functions
to the core API (using Cordic algorithms).
* builds/top_level.mk, builds/newline, builds/detect.mk: fixed problems
with Make on Windows 2000, as well as problems when "make distclean" is
invoked on a non-Unix platform when there is no "config.mk" in the
current directory..
* builds/freetype.mk: fixed a problem with object deletions under
Dos/Windows/OS/2 systems
* src/tools: added new directory to hold tools and test programs
moved docmaker.py, glnames.py to it..
* src/tools/docmaker.py: improved the script to add the current date
at the footer of each web page (useful to distinguish between versions)
* Jamfile: fixed incorrect HDRMACRO argument.
* TODO: removed the cubic arc bbox computation note, since it has been
fixed recently..
* include/freetype/t1tables.h, include/freetype/config/ftoption.h:
formatting
2001-05-11 16:25:57 +02:00
|
|
|
#include "fttrigon.c"
|
2002-02-24 06:26:57 +01:00
|
|
|
#include "ftoutln.c"
|
2002-02-24 03:59:24 +01:00
|
|
|
#include "ftgloadr.c"
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "ftobjs.c"
|
|
|
|
#include "ftnames.c"
|
|
|
|
|
2000-01-02 10:41:30 +01:00
|
|
|
/* END */
|