Upgrade Boehm GC to 7.2alpha4.
[cacao.git] / src / mm / boehm-gc / include / gc_version.h
1 /*
2  * Copyright (c) 1994 by Xerox Corporation.  All rights reserved.
3  * Copyright (c) 1996 by Silicon Graphics.  All rights reserved.
4  * Copyright (c) 1998 by Fergus Henderson.  All rights reserved.
5  * Copyright (c) 2000-2009 by Hewlett-Packard Development Company.
6  * All rights reserved.
7  *
8  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
9  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
10  *
11  * Permission is hereby granted to use or copy this program
12  * for any purpose,  provided the above notices are retained on all copies.
13  * Permission to modify the code and to distribute modified code is granted,
14  * provided the above notices are retained, and a notice that the code was
15  * modified is included with the above copyright notice.
16  */
17
18 /* The version here should match that in configure/configure.ac */
19 /* Eventually this one may become unnecessary.  For now we need */
20 /* it to keep the old-style build process working.              */
21 #define GC_TMP_VERSION_MAJOR 7
22 #define GC_TMP_VERSION_MINOR 2
23 #define GC_TMP_ALPHA_VERSION 4
24
25 #ifndef GC_NOT_ALPHA
26 #   define GC_NOT_ALPHA 0xff
27 #endif
28
29 #if defined(GC_VERSION_MAJOR)
30 # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR || \
31      GC_TMP_VERSION_MINOR != GC_VERSION_MINOR || \
32      defined(GC_ALPHA_VERSION) != (GC_TMP_ALPHA_VERSION != GC_NOT_ALPHA) || \
33      defined(GC_ALPHA_VERSION) && GC_TMP_ALPHA_VERSION != GC_ALPHA_VERSION
34 #   error Inconsistent version info.  Check doc/README, include/gc_version.h, and configure.ac.
35 # endif
36 #else
37 # define GC_VERSION_MAJOR GC_TMP_VERSION_MAJOR
38 # define GC_VERSION_MINOR GC_TMP_VERSION_MINOR
39 # define GC_ALPHA_VERSION GC_TMP_ALPHA_VERSION
40 #endif