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

« back to all changes in this revision

Viewing changes to cmd/gvpr/compile.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: compile.h,v 1.1.1.1 2004/12/23 04:02:22 ellson Exp $ $Revision: 1.1.1.1 $ */
 
1
/* $Id: compile.h,v 1.2 2008/01/09 22:36:19 erg Exp $ $Revision: 1.2 $ */
2
2
/* vim:set shiftwidth=4 ts=8: */
3
3
 
4
4
/**********************************************************
82
82
    extern Agraph_t *openG(char *name, Agdesc_t);
83
83
    extern Agraph_t *openSubg(Agraph_t * g, char *name);
84
84
    extern Agnode_t *openNode(Agraph_t * g, char *name);
85
 
    extern Agedge_t *openEdge(Agnode_t * t, Agnode_t * h, char *key);
 
85
    extern Agedge_t *openEdge(Agraph_t* g, Agnode_t * t, Agnode_t * h, char *key);
86
86
 
87
87
#endif
88
88