~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to Puma/src/basics/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-06-15 10:17:02 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090615101702-qsr30iptwbxylmo2
Tags: 1.0pre4~svn.20090615-1
* New upstream release.
* don't ignore errors in the postrm script
* avoid spurious creation of empty dir ./usr/sbin/
* improve short descriptions of libpuma-doc and libpuma-dev
* bump Standards-Version to 3.8.1
* bump debhelper compat level to level 7 (latest in stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
/** Library major version number. */
26
26
#define PUMA_MAJOR_VERSION        1
27
27
/** Library minor version number. */
28
 
#define PUMA_MINOR_VERSION        2
 
28
#define PUMA_MINOR_VERSION        3
29
29
 
30
30
#define __PUMA_STR(arg) #arg
31
31
#define __PUMA_VERSION(major,minor) __PUMA_STR(major) "." __PUMA_STR(minor)
36
36
namespace Puma {
37
37
 
38
38
/** Get the library version string. */
39
 
static inline const char *puma_version () { return "1.2"; }
 
39
static inline const char *puma_version () { return PUMA_VERSION; }
40
40
 
41
41
} // namespace Puma
42
42