1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/modules/freetype2/include/ft2build.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,42 @@ 1.4 +/***************************************************************************/ 1.5 +/* */ 1.6 +/* ft2build.h */ 1.7 +/* */ 1.8 +/* FreeType 2 build and setup macros. */ 1.9 +/* */ 1.10 +/* Copyright 1996-2001, 2006, 2013 by */ 1.11 +/* David Turner, Robert Wilhelm, and Werner Lemberg. */ 1.12 +/* */ 1.13 +/* This file is part of the FreeType project, and may only be used, */ 1.14 +/* modified, and distributed under the terms of the FreeType project */ 1.15 +/* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 1.16 +/* this file you indicate that you have read the license and */ 1.17 +/* understand and accept it fully. */ 1.18 +/* */ 1.19 +/***************************************************************************/ 1.20 + 1.21 + 1.22 + /*************************************************************************/ 1.23 + /* */ 1.24 + /* This is the `entry point' for FreeType header file inclusions. It is */ 1.25 + /* the only header file which should be included directly; all other */ 1.26 + /* FreeType header files should be accessed with macro names (after */ 1.27 + /* including `ft2build.h'). */ 1.28 + /* */ 1.29 + /* A typical example is */ 1.30 + /* */ 1.31 + /* #include <ft2build.h> */ 1.32 + /* #include FT_FREETYPE_H */ 1.33 + /* */ 1.34 + /*************************************************************************/ 1.35 + 1.36 + 1.37 +#ifndef __FT2BUILD_H__ 1.38 +#define __FT2BUILD_H__ 1.39 + 1.40 +#include <config/ftheader.h> 1.41 + 1.42 +#endif /* __FT2BUILD_H__ */ 1.43 + 1.44 + 1.45 +/* END */