~ubuntu-branches/ubuntu/maverick/hedgewars/maverick-proposed

« back to all changes in this revision

Viewing changes to misc/libfreetype/src/gxvalid/gxverror.h

  • Committer: Package Import Robot
  • Author(s): Evan Broder
  • Date: 2011-11-22 04:49:51 UTC
  • mfrom: (3.2.15 sid)
  • Revision ID: package-import@ubuntu.com-20111122044951-elrt8tvvs5andmuw
Tags: 0.9.17-1~maverick0.1
* Backport 0.9.17-1 to Maverick to fix network play (LP: #852603):
  - debian/patches/haskell-backwards-compat.patch: Replace or
    reimplement functions used by the server that weren't available in
    Maverick's Haskell stack
  - Drop libghc-bytestring-show-dev build-dependency.
  - Add 6's to get libghc6-deepseq-dev, libghc6-utf8-string-dev
    build-dependencies
  - Change libghc6-network-dev build-dependency to libghc6-network-bytestring-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************/
 
2
/*                                                                         */
 
3
/*  gxverror.h                                                             */
 
4
/*                                                                         */
 
5
/*    TrueTypeGX/AAT validation module error codes (specification only).   */
 
6
/*                                                                         */
 
7
/*  Copyright 2004, 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */
 
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
/* gxvalid is derived from both gxlayout module and otvalid module.        */
 
21
/* Development of gxlayout is supported by the Information-technology      */
 
22
/* Promotion Agency(IPA), Japan.                                           */
 
23
/*                                                                         */
 
24
/***************************************************************************/
 
25
 
 
26
 
 
27
  /*************************************************************************/
 
28
  /*                                                                       */
 
29
  /* This file is used to define the OpenType validation module error      */
 
30
  /* enumeration constants.                                                */
 
31
  /*                                                                       */
 
32
  /*************************************************************************/
 
33
 
 
34
#ifndef __GXVERROR_H__
 
35
#define __GXVERROR_H__
 
36
 
 
37
#include FT_MODULE_ERRORS_H
 
38
 
 
39
#undef __FTERRORS_H__
 
40
 
 
41
#define FT_ERR_PREFIX  GXV_Err_
 
42
#define FT_ERR_BASE    FT_Mod_Err_GXV
 
43
 
 
44
#define FT_KEEP_ERR_PREFIX
 
45
 
 
46
#include FT_ERRORS_H
 
47
 
 
48
#endif /* __GXVERROR_H__ */
 
49
 
 
50
 
 
51
/* END */