~ubuntu-branches/ubuntu/quantal/libgc/quantal

« back to all changes in this revision

Viewing changes to include/gc_version.h

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Egger
  • Date: 2011-03-02 13:43:18 UTC
  • mfrom: (1.2.5 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110302134318-82ful0us5ce82qe8
Tags: 1:7.1-7
* Add ppc64 symbol file (Closes: #615469)
* Add sh4 symbol file (Closes: #614744)
* Add armhf symbol file
* Add powerpcspe symbol file
* Handle sparc64 the same as sparc
* Clear non-arch symbol file to support building on not yet captured
  architectures
* add -pthread to fix build with --no-add-needed

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 1
 
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