2000-11-02 08:53:08 +01:00
|
|
|
In order to build the library, read the `BUILD' document in the `docs'
|
2000-12-14 23:57:17 +01:00
|
|
|
directory. This is only a quick starter.
|
2000-07-26 21:13:51 +02:00
|
|
|
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2002-01-09 22:01:18 +01:00
|
|
|
I. Unix systems
|
|
|
|
---------------
|
|
|
|
|
2002-01-31 18:42:05 +01:00
|
|
|
If you have GNU Make installed, simply type
|
2002-01-09 22:01:18 +01:00
|
|
|
|
|
|
|
./configure
|
|
|
|
make
|
2002-01-31 18:42:05 +01:00
|
|
|
make install
|
2002-01-09 22:01:18 +01:00
|
|
|
|
|
|
|
on the command line to configure, build and install FreeType on your
|
|
|
|
system. Note that the default installation path is "/usr/local".
|
|
|
|
|
|
|
|
Please read the file README.UNX, it contains _critical_ information
|
|
|
|
regarding the installation of FreeType on many Unix systems.
|
|
|
|
|
2002-01-08 19:33:55 +01:00
|
|
|
|
|
|
|
II. From the command line
|
2002-01-09 22:01:18 +01:00
|
|
|
-------------------------
|
2000-12-14 23:57:17 +01:00
|
|
|
|
2002-01-09 22:01:18 +01:00
|
|
|
If you are not using Unix, there are two ways to quickly build
|
|
|
|
FreeType 2 from the command line.
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
The first, and favorite one, is to use the "Jam" build tool. Jam is
|
|
|
|
a highly portable replacement for Make whose control files do not
|
2001-05-29 12:52:34 +02:00
|
|
|
depend on the current platform or compiler toolset.
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
For more information, please see:
|
|
|
|
|
|
|
|
http://www.freetype.org/jam/index.html
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-29 12:52:34 +02:00
|
|
|
The second one is to use "GNU Make" (and NO OTHER MAKE TOOL).
|
2001-12-11 14:14:41 +01:00
|
|
|
|
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
1. Building FT2 with "Jam"
|
|
|
|
--------------------------
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
Once you've got *our version* of the Jam tool installed on your
|
|
|
|
system, simply go to the top-level FT2 directory, then type
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-29 12:52:34 +02:00
|
|
|
"jam"
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
on the command line. This will build the library and place it in
|
|
|
|
the "objs" directory.
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
By default, a static library is built. On Unix systems, it is
|
|
|
|
possible to build a shared library through the "libtool" script.
|
|
|
|
You need to have libtool installed on your system, then re-define
|
|
|
|
a few environment variables before invoking Jam, as in
|
2001-05-29 12:52:34 +02:00
|
|
|
|
2001-12-11 14:14:41 +01:00
|
|
|
export CC="libtool --mode=compile cc"
|
|
|
|
export LINK="libtool --mode=link cc"
|
2001-05-29 12:52:34 +02:00
|
|
|
jam
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
In later releases of FT2, building shared libraries with Jam
|
2002-01-09 22:01:18 +01:00
|
|
|
should become automatic on Unix systems.
|
2001-12-11 14:14:41 +01:00
|
|
|
|
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
2. Building FT2 with "GNU Make"
|
|
|
|
-------------------------------
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-03-12 23:33:52 +01:00
|
|
|
You need to have GNU Make (version 3.78.1 or newer) installed on
|
|
|
|
your system to compile the library from the command line. This will
|
2001-03-20 15:50:04 +01:00
|
|
|
_NOT_ work with other make tools (including BSD make)!
|
2000-12-14 23:57:17 +01:00
|
|
|
|
|
|
|
[Well, this is not really correct. Recently, a perl implementation
|
|
|
|
of make called `makepp' has appeared which can also build FreeType 2
|
2002-05-02 08:50:58 +02:00
|
|
|
successfully on Unix platforms. See http://makepp.sourceforge.net
|
2000-12-14 23:57:17 +01:00
|
|
|
for more details.]
|
2001-12-11 14:14:41 +01:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
- Go to the `freetype2' directory.
|
2000-12-01 00:48:22 +01:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- Unix (any C compiler should work):
|
2000-12-01 00:48:22 +01:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
- make setup (don't worry, this will invoke a configure script)
|
|
|
|
- make
|
|
|
|
- make install
|
2000-08-23 01:15:23 +02:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
Alternatively, you can pass parameters to the configure script
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
within the CFG variable, as in:
|
2000-10-03 19:51:29 +02:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
- make setup CFG="--prefix=/usr"
|
|
|
|
- make
|
|
|
|
- make install
|
2000-07-26 21:13:51 +02:00
|
|
|
|
2001-12-06 19:37:34 +01:00
|
|
|
If the configure script isn't run, try to add `unix' as a target
|
|
|
|
on the command line, e.g.:
|
|
|
|
|
|
|
|
- make setup unix CFG="--prefix=/opt/experimental"
|
|
|
|
|
2001-05-29 12:52:34 +02:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- Windows:
|
2000-07-26 21:13:51 +02:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
We provide a version of GNU Make for Win32 on the FreeType site.
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
See http://www.freetype.org/download.html for details.
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- gcc (Mingw, _not_ CygWin):
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- make setup
|
|
|
|
- make
|
2000-07-26 21:13:51 +02:00
|
|
|
|
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- Visual C++:
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- make setup visualc
|
|
|
|
- make
|
2000-12-14 19:50:40 +01:00
|
|
|
|
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
- other compilers:
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2001-05-29 12:52:34 +02:00
|
|
|
- make setup bcc32 -> Borland C++ 32 bits
|
|
|
|
- make setup intelc -> Intel C++
|
|
|
|
- make setup watcom -> Watcom C++
|
|
|
|
- make setup lcc -> Win32-LCC
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2002-05-05 12:57:06 +02:00
|
|
|
If you want to build FreeType 2 in another directory, you must set
|
2002-06-14 10:09:25 +02:00
|
|
|
two environment variables, `OJB_DIR' and `TOP_DIR'. The former
|
|
|
|
gives the directory where the object files and the library should be
|
2002-05-05 12:57:06 +02:00
|
|
|
created (this directory must exist), the latter the top directory of
|
|
|
|
the FreeType 2 source tree. Example:
|
|
|
|
|
2002-06-14 10:09:25 +02:00
|
|
|
OBJ_DIR=~/freetype2.compiled TOP_DIR=~/freetype2 \
|
|
|
|
make -f$TOP_DIR/Makefile setup ansi
|
|
|
|
OBJ_DIR=~/freetype2.compiled TOP_DIR=~/freetype2 \
|
|
|
|
make -f$TOP_DIR/Makefile
|
2002-05-05 12:57:06 +02:00
|
|
|
|
|
|
|
On Unix boxes, calling `configure' from the build directory is
|
|
|
|
sufficient; it will build a small Makefile which calls the
|
|
|
|
FreeType 2 Makefile with the necessary parameters.
|
|
|
|
|
|
|
|
|
|
|
|
III. In your own environment (IDE)
|
|
|
|
----------------------------------
|
2000-10-31 21:42:18 +01:00
|
|
|
|
* builds/win32/detekt.mk: Fix .PHONY target for Intel compiler.
Renamed "ftnames.h" to "ftsnames.h", and FT_NAMES_H to
FT_SFNT_NAMES_H.
* docs/docmaker.py: Added generation of INDEX link in table of
contents.
* INSTALL, docs/BUILD: Updated documentation to indicate that the
compilation process has changed slightly (no more `src' required in
* builds/*/*-def.mk: Changed the objects directory from "obj" to
"objs".
* include/freetype/config/ftheader.h: Removed obsolete macros like
FT_SOURCE_FILE, etc. and added cache-specific macro definitions that
were previously defined in <freetype/ftcache.h>. Added comments to
be included in a new API Reference section.
* src/*/*: Removed the use of FT_SOURCE_FILE, etc. Now, each
component needs to add its own directory to the include path at
compile time. Modified all "rules.mk" and "descrip.mms"
accordingly.
* src/cid/cidobjs.c, src/cid/cidload.c, src/pcf/pcfread.c,
src/type1/t1load.c, src/type1/t1objs.c: Added a few casts to remove
compiler warnings in pedantic modes.
* include/config/ft2build.h, include/config/ftheader.h: The file
top-level <ft2build.h>.
* include/config/ftheader.h: Added new section describing the #include
macros.
the Type 2 glyph charstring (used by conversion programs).
* docs/docmaker.py: Added cross-references generation as well as
seac emulation provided by the Type 2 endchar operator.
* src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
Added support for clipped direct rendering in the smooth renderer.
* src/cff/t2objs.c (T2_Init_Face): For pure CFF fonts, set
2001-03-20 23:58:56 +01:00
|
|
|
You need to add the directories "freetype2/include" to your include
|
|
|
|
path when compiling the library.
|
2001-12-11 14:14:41 +01:00
|
|
|
|
* builds/win32/detekt.mk: Fix .PHONY target for Intel compiler.
Renamed "ftnames.h" to "ftsnames.h", and FT_NAMES_H to
FT_SFNT_NAMES_H.
* docs/docmaker.py: Added generation of INDEX link in table of
contents.
* INSTALL, docs/BUILD: Updated documentation to indicate that the
compilation process has changed slightly (no more `src' required in
* builds/*/*-def.mk: Changed the objects directory from "obj" to
"objs".
* include/freetype/config/ftheader.h: Removed obsolete macros like
FT_SOURCE_FILE, etc. and added cache-specific macro definitions that
were previously defined in <freetype/ftcache.h>. Added comments to
be included in a new API Reference section.
* src/*/*: Removed the use of FT_SOURCE_FILE, etc. Now, each
component needs to add its own directory to the include path at
compile time. Modified all "rules.mk" and "descrip.mms"
accordingly.
* src/cid/cidobjs.c, src/cid/cidload.c, src/pcf/pcfread.c,
src/type1/t1load.c, src/type1/t1objs.c: Added a few casts to remove
compiler warnings in pedantic modes.
* include/config/ft2build.h, include/config/ftheader.h: The file
top-level <ft2build.h>.
* include/config/ftheader.h: Added new section describing the #include
macros.
the Type 2 glyph charstring (used by conversion programs).
* docs/docmaker.py: Added cross-references generation as well as
seac emulation provided by the Type 2 endchar operator.
* src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
Added support for clipped direct rendering in the smooth renderer.
* src/cff/t2objs.c (T2_Init_Face): For pure CFF fonts, set
2001-03-20 23:58:56 +01:00
|
|
|
FreeType 2 is made of several components; each one of them is
|
|
|
|
located in a subdirectory of "freetype2/src". For example,
|
|
|
|
`freetype2/src/truetype/' contains the TrueType font driver.
|
2001-12-11 14:14:41 +01:00
|
|
|
|
* builds/win32/detekt.mk: Fix .PHONY target for Intel compiler.
Renamed "ftnames.h" to "ftsnames.h", and FT_NAMES_H to
FT_SFNT_NAMES_H.
* docs/docmaker.py: Added generation of INDEX link in table of
contents.
* INSTALL, docs/BUILD: Updated documentation to indicate that the
compilation process has changed slightly (no more `src' required in
* builds/*/*-def.mk: Changed the objects directory from "obj" to
"objs".
* include/freetype/config/ftheader.h: Removed obsolete macros like
FT_SOURCE_FILE, etc. and added cache-specific macro definitions that
were previously defined in <freetype/ftcache.h>. Added comments to
be included in a new API Reference section.
* src/*/*: Removed the use of FT_SOURCE_FILE, etc. Now, each
component needs to add its own directory to the include path at
compile time. Modified all "rules.mk" and "descrip.mms"
accordingly.
* src/cid/cidobjs.c, src/cid/cidload.c, src/pcf/pcfread.c,
src/type1/t1load.c, src/type1/t1objs.c: Added a few casts to remove
compiler warnings in pedantic modes.
* include/config/ft2build.h, include/config/ftheader.h: The file
top-level <ft2build.h>.
* include/config/ftheader.h: Added new section describing the #include
macros.
the Type 2 glyph charstring (used by conversion programs).
* docs/docmaker.py: Added cross-references generation as well as
seac emulation provided by the Type 2 endchar operator.
* src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
Added support for clipped direct rendering in the smooth renderer.
* src/cff/t2objs.c (T2_Init_Face): For pure CFF fonts, set
2001-03-20 23:58:56 +01:00
|
|
|
DO NOT COMPILE ALL C FILES! Rather, compile the following ones:
|
2001-12-11 14:14:41 +01:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
-- base components (required)
|
2001-12-11 14:14:41 +01:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
src/base/ftsystem.c
|
|
|
|
src/base/ftinit.c
|
|
|
|
src/base/ftdebug.c
|
|
|
|
src/base/ftbase.c
|
|
|
|
src/base/ftglyph.c
|
|
|
|
src/base/ftbbox.c
|
|
|
|
src/base/ftmm.c
|
2001-12-11 14:14:41 +01:00
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
src/base/ftmac.c -- only on the Macintosh
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
|
|
|
|
-- other components are optional
|
|
|
|
|
2000-12-14 23:57:17 +01:00
|
|
|
src/autohint/autohint.c -- auto hinting module
|
|
|
|
src/cache/ftcache.c -- cache sub-system (in beta)
|
2001-05-30 09:53:37 +02:00
|
|
|
src/sfnt/sfnt.c -- SFNT files support
|
|
|
|
(TrueType & OpenType)
|
2000-12-14 23:57:17 +01:00
|
|
|
src/cff/cff.c -- CFF/OpenType font driver
|
|
|
|
src/psnames/psnames.c -- Postscript glyph names support
|
|
|
|
src/psaux/psaux.c -- Postscript Type 1 parsing
|
|
|
|
src/truetype/truetype.c -- TrueType font driver
|
|
|
|
src/type1/type1.c -- Type 1 font driver
|
|
|
|
src/cid/type1cid.c -- Type 1 CID-keyed font driver
|
|
|
|
src/winfonts/winfonts.c -- Windows FONT / FNT font driver
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
|
|
|
|
Note:
|
2001-12-11 14:14:41 +01:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
`truetype.c' needs `sfnt.c' and `psnames.c'
|
|
|
|
`type1.c' needs `psaux.c' and `psnames.c'
|
|
|
|
`type1cid.c' needs `psaux.c' and `psnames.c'
|
|
|
|
`cff.c' needs `sfnt.c', `psaux.c', and `psnames.c'
|
2000-10-31 21:42:18 +01:00
|
|
|
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
etc.
|
|
|
|
|
2001-05-30 09:53:37 +02:00
|
|
|
For more information, please consult "docs/BUILD".
|
* INSTALL: Revised.
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
builds/win32/w32-bccd.mk: Revised.
* include/freetype/config/ftbuild.h,
include/freetype/internal/internal.h: Revised.
* include/freetype/ftimage.h: Updated to new header inclusion scheme.
* builds/toplevel.mk (.PHONY): Adding `distclean'.
* builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
`setup'.
* INSTALL: Slightly updated the quick starter documentation to
include IDE compilation, prevent against BSD Make, and specify "make
setup" instead of a single "make" for build configuration.
* include/config/ftbuild.h, include/internal/internal.h: Added new
configuration files used to determine the location of all public,
configuration, and internal header files for FreeType 2. Modified
all headers under "include/freetype" to reflect this change. Note
that we still need to change the library source files themselves
though.
builds/win32/detect.mk: Added new files to support compilation with
the free Borland C++ command-line compiler. Modified the detection
rules to recognize the new "bcc32" target in "make setup bcc32".
src/truetype/ttobjs.c, src/truetype/ttgload.c,
src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
didn't really like. Basically, this compiler complains when FT_UInt
is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
in these cases).
2000-12-01 18:25:58 +01:00
|
|
|
|
|
|
|
--- end of INSTALL --
|