00001 /***************************************************************************/ 00002 /* */ 00003 /* ft2build.h */ 00004 /* */ 00005 /* Build macros of the FreeType 2 library. */ 00006 /* */ 00007 /* Copyright 1996-2001, 2003, 2006 by */ 00008 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 00009 /* */ 00010 /* This file is part of the FreeType project, and may only be used, */ 00011 /* modified, and distributed under the terms of the FreeType project */ 00012 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 00013 /* this file you indicate that you have read the license and */ 00014 /* understand and accept it fully. */ 00015 /* */ 00016 /***************************************************************************/ 00017 00018 00019 /*************************************************************************/ 00020 /* */ 00021 /* This is a Unix-specific version of <ft2build.h> that should be used */ 00022 /* exclusively *after* installation of the library. */ 00023 /* */ 00024 /* It assumes that `/usr/local/include/freetype2' (or whatever is */ 00025 /* returned by the `freetype-config --cflags' or `pkg-config --cflags' */ 00026 /* command) is in your compilation include path. */ 00027 /* */ 00028 /* We don't need to do anything special in this release. However, for */ 00029 /* a future FreeType 2 release, the following installation changes will */ 00030 /* be performed: */ 00031 /* */ 00032 /* - The contents of `freetype-2.x/include/freetype' will be installed */ 00033 /* to `/usr/local/include/freetype2' instead of */ 00034 /* `/usr/local/include/freetype2/freetype'. */ 00035 /* */ 00036 /* - This file will #include <freetype2/config/ftheader.h>, instead */ 00037 /* of <freetype/config/ftheader.h>. */ 00038 /* */ 00039 /* - The contents of `ftheader.h' will be processed with `sed' to */ 00040 /* replace all `<freetype/xxx>' with `<freetype2/xxx>'. */ 00041 /* */ 00042 /* - Adding `/usr/local/include/freetype2' to your compilation include */ 00043 /* path will not be necessary anymore. */ 00044 /* */ 00045 /* These changes will be transparent to client applications which use */ 00046 /* freetype-config (or pkg-config). No modifications will be necessary */ 00047 /* to compile with the new scheme. */ 00048 /* */ 00049 /*************************************************************************/ 00050 00051 00052 #ifndef __FT2_BUILD_UNIX_H__ 00053 #define __FT2_BUILD_UNIX_H__ 00054 00055 /* `<prefix>/include/freetype2' must be in your current inclusion path */ 00056 #include <freetype/config/ftheader.h> 00057 00058 #endif /* __FT2_BUILD_UNIX_H__ */ 00059 00060 00061 /* END */