~ubuntu-branches/ubuntu/raring/boost-build/raring

« back to all changes in this revision

Viewing changes to jam_src/boehm_gc/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-08-06 00:38:31 UTC
  • mfrom: (4.1.1 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080806003831-zr65893244swds0b
Tags: 2.0-m12-2
* debian/rules: Do not install /etc/user-config.jam.
* debian/site-config.jam: New.  Install into /etc instead of empty
  example.  Closes: #493323.

* debian/control: Update homepage.  Update description.  Closes:
  #493510.  Update Standards-Version to 3.8.0; no changes.

* debian/compat: New.  Set compat level to 7.
* debian/rules: Remove DH_COMPAT setting.
* debian/control: Change debhelper build-dep to version >= 7.

* debian/control: Remove docbook-to-man, bison from build-deps.

* debian/rules: Clean up upstream source by removing debian/conffiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The version here should match that in configure/configure.ac */
 
2
/* Eventually this one may become unnecessary.  For now we need */
 
3
/* it to keep the old-style build process working.              */
 
4
#define GC_TMP_VERSION_MAJOR 7
 
5
#define GC_TMP_VERSION_MINOR 0
 
6
#define GC_TMP_ALPHA_VERSION GC_NOT_ALPHA
 
7
 
 
8
#ifndef GC_NOT_ALPHA
 
9
#   define GC_NOT_ALPHA 0xff
 
10
#endif
 
11
 
 
12
#if defined(GC_VERSION_MAJOR)
 
13
# if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR || \
 
14
     GC_TMP_VERSION_MINOR != GC_VERSION_MINOR || \
 
15
     defined(GC_ALPHA_VERSION) != (GC_TMP_ALPHA_VERSION != GC_NOT_ALPHA) || \
 
16
     defined(GC_ALPHA_VERSION) && GC_TMP_ALPHA_VERSION != GC_ALPHA_VERSION
 
17
#   error Inconsistent version info.  Check README, version.h, and configure.ac.
 
18
# endif
 
19
#else
 
20
# define GC_VERSION_MAJOR GC_TMP_VERSION_MAJOR
 
21
# define GC_VERSION_MINOR GC_TMP_VERSION_MINOR
 
22
# define GC_ALPHA_VERSION GC_TMP_ALPHA_VERSION
 
23
#endif
 
24
 
 
25
 
 
26
#ifndef GC_NO_VERSION_VAR
 
27
 
 
28
unsigned GC_version = ((GC_VERSION_MAJOR << 16) | (GC_VERSION_MINOR << 8) | GC_TMP_ALPHA_VERSION);
 
29
 
 
30
#endif /* GC_NO_VERSION_VAR */