~ubuntu-branches/ubuntu/lucid/graphviz/lucid-updates

« back to all changes in this revision

Viewing changes to lib/common/types.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2008-06-19 20:23:23 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080619202323-ls23h96ntj9ny94m
Tags: 2.18-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Build depend on liblualib50-dev instead of liblua5.1-0-dev.
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev or python2.5-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: types.h,v 1.57 2007/09/04 21:40:01 erg Exp $ $Revision: 1.57 $ */
 
1
/* $Id: types.h,v 1.59 2008/01/08 18:18:59 ellson Exp $ $Revision: 1.59 $ */
2
2
/* vim:set shiftwidth=4 ts=8: */
3
3
 
4
4
/**********************************************************
22
22
#include <signal.h>
23
23
 
24
24
typedef unsigned char boolean;
 
25
#ifndef NOT
25
26
#define NOT(v) (!(v))
 
27
#endif
 
28
#ifndef FALSE
26
29
#define FALSE 0
 
30
#endif
 
31
#ifndef TRUE
27
32
#define TRUE NOT(FALSE)
 
33
#endif
28
34
 
29
35
#include "geom.h"
30
36
#include "gvcext.h"
185
191
        boolean usershape;
186
192
    } shape_desc;
187
193
 
188
 
#include <usershape.h>          /* usershapes needed by gvc even w/o CODEGENS */
 
194
#include "usershape.h"          /* usershapes needed by gvc even w/o CODEGENS */
189
195
#ifdef WITH_CODEGENS
190
196
 
191
197
    struct codegen_s {