Skip to content
Snippets Groups Projects
Commit 2db8da39 authored by Werner Lemberg's avatar Werner Lemberg
Browse files

* README: Updated.
* graph/Jamfile: Add support for BeOS.
parent c215222a
No related branches found
No related tags found
Loading
2002-05-12 Werner Lemberg <wl@gnu.org>
* README: Updated.
2002-05-12 Michael Pfeiffer <michael.pfeiffer@utanet.at>
* graph/Jamfile: Add support for BeOS.
2002-04-28 Werner Lemberg <wl@gnu.org>
* src/ftview.c (Render_Text): Don't call `get_glyph_index'. This
......
WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
The Makefile and Jamfile contained in this directory assume that the
FreeType 2 library sources are located in ../freetype2. If you
downloaded one of the stable FreeType 2 source packages from our server,
you'll most probably need to rename its directory, for example:
FreeType 2 library sources are located in `../freetype2'. If you
downloaded one of the stable FreeType 2 source packages from our
server, you most probably have to rename its directory, for example:
mv freetype-2.0.6 freetype2 on Unix
rename freetype-2.0.6 freetype2 on Windows
......@@ -17,14 +17,14 @@ WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
Note that the demonstration programs include a tiny graphics
sub-system that includes `drivers' to display Windows on Win32, X11,
and OS/2. The build system should automatically detect which driver
to use based on the current platform.
BeOS, Mac, and OS/2. The build system should automatically detect
which driver to use based on the current platform.
UNIX USERS:
When building the demos, the build system tries to detect your X11
path by looking for the patterns `X11/bin', `X11R6/bin', and
"X11R5/bin" in your current path (in this order). If no X11 path
`X11R5/bin' in your current path (in this order). If no X11 path
is found, some demo programs will not be able to display graphics
and will fail. If you have X11 in an unusual place, use the
X11_PATH make variable. More than one directory, if necessary,
......
......@@ -8,7 +8,11 @@ GRAPH_LIB = $(LIBPREFIX)graph$(SUFLIB) ;
graph_sources = grblit grobjs grfont grdevice grinit ;
if $(UNIX)
if $(OS) = BEOS
{
DEVICE_DEFINE = -DDEVICE_BEOS ;
}
else if $(UNIX)
{
DEVICE_DEFINE = -DDEVICE_X11 ;
}
......@@ -25,7 +29,11 @@ CCFLAGS on <graph>grinit$(SUFOBJ) = $(CCFLAGS) $(DEVICE_DEFINE) ;
Library $(GRAPH_LIB) : $(graph_sources).c ;
if $(UNIX)
if $(OS) = BEOS
{
SubInclude FT2DEMO_TOP graph beos ;
}
else if $(UNIX)
{
SubInclude FT2DEMO_TOP graph x11 ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment