~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to display/d.title/options.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
#ifdef MAIN
3
 
#define GLOBAL
4
 
#else
5
 
#define GLOBAL extern
6
 
#endif
7
 
 
8
 
GLOBAL char map_name[GNAME_MAX];
9
 
GLOBAL char color[128];
10
 
GLOBAL float size;
11
 
GLOBAL int type;
 
2
extern const char *map_name;
 
3
extern const char *color;
 
4
extern float size;
 
5
extern int type;
12
6
 
13
7
#define NORMAL  1
14
8
#define FANCY   2