~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/freetype/builds/unix/ft2unix.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************/
 
2
/*                                                                         */
 
3
/*  ft2build.h                                                             */
 
4
/*                                                                         */
 
5
/*    Build macros of the FreeType 2 library.                              */
 
6
/*                                                                         */
 
7
/*  Copyright 1996-2001, 2003, 2006 by                                     */
 
8
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 
9
/*                                                                         */
 
10
/*  This file is part of the FreeType project, and may only be used,       */
 
11
/*  modified, and distributed under the terms of the FreeType project      */
 
12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
 
13
/*  this file you indicate that you have read the license and              */
 
14
/*  understand and accept it fully.                                        */
 
15
/*                                                                         */
 
16
/***************************************************************************/
 
17
 
 
18
 
 
19
  /*************************************************************************/
 
20
  /*                                                                       */
 
21
  /* This is a Unix-specific version of <ft2build.h> that should be used   */
 
22
  /* exclusively *after* installation of the library.                      */
 
23
  /*                                                                       */
 
24
  /* It assumes that `/usr/local/include/freetype2' (or whatever is        */
 
25
  /* returned by the `freetype-config --cflags' or `pkg-config --cflags'   */
 
26
  /* command) is in your compilation include path.                         */
 
27
  /*                                                                       */
 
28
  /* We don't need to do anything special in this release.  However, for   */
 
29
  /* a future FreeType 2 release, the following installation changes will  */
 
30
  /* be performed:                                                         */
 
31
  /*                                                                       */
 
32
  /*   - The contents of `freetype-2.x/include/freetype' will be installed */
 
33
  /*     to `/usr/local/include/freetype2' instead of                      */
 
34
  /*     `/usr/local/include/freetype2/freetype'.                          */
 
35
  /*                                                                       */
 
36
  /*   - This file will #include <freetype2/config/ftheader.h>, instead    */
 
37
  /*     of <freetype/config/ftheader.h>.                                  */
 
38
  /*                                                                       */
 
39
  /*   - The contents of `ftheader.h' will be processed with `sed' to      */
 
40
  /*     replace all `<freetype/xxx>' with `<freetype2/xxx>'.              */
 
41
  /*                                                                       */
 
42
  /*   - Adding `/usr/local/include/freetype2' to your compilation include */
 
43
  /*     path will not be necessary anymore.                               */
 
44
  /*                                                                       */
 
45
  /* These changes will be transparent to client applications which use    */
 
46
  /* freetype-config (or pkg-config).  No modifications will be necessary  */
 
47
  /* to compile with the new scheme.                                       */
 
48
  /*                                                                       */
 
49
  /*************************************************************************/
 
50
 
 
51
 
 
52
#ifndef __FT2_BUILD_UNIX_H__
 
53
#define __FT2_BUILD_UNIX_H__
 
54
 
 
55
  /* `<prefix>/include/freetype2' must be in your current inclusion path */
 
56
#include <freetype/config/ftheader.h>
 
57
 
 
58
#endif /* __FT2_BUILD_UNIX_H__ */
 
59
 
 
60
 
 
61
/* END */