~ubuntu-branches/ubuntu/quantal/sgt-puzzles/quantal

« back to all changes in this revision

Viewing changes to .pc/303_show-debian-version-number.diff/version.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings
  • Date: 2011-03-01 04:16:54 UTC
  • mfrom: (1.2.9 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20110301041654-949qy9qrroziy7vq
* New upstream version:
  - Add Range and Signpost puzzles
  - Use stock icons and conventional order for dialog buttons
  - Use Cairo for screen rendering
* Update German translation, thanks to Helge Kreutzmann
* Remove or update patches applied or partially applied upstream
* Use Debian source format 3.0 (quilt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Puzzles version numbering.
 
3
 */
 
4
 
 
5
#define STR1(x) #x
 
6
#define STR(x) STR1(x)
 
7
 
 
8
#if defined REVISION
 
9
 
 
10
char ver[] = "Revision: r" STR(REVISION);
 
11
 
 
12
#else
 
13
 
 
14
char ver[] = "Unidentified build, " __DATE__ " " __TIME__;
 
15
 
 
16
#endif