summaryrefslogtreecommitdiff
path: root/src/h/version.h
blob: c7ac2a0a044f92e309c23aa6797b7d67f3f75dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * version.h -- version identification
 */

#undef DVersion
#undef Version
#undef UVersion
#undef IVersion

/*
 *  Icon version number and date.
 *  These are the only two entries that change any more.
 */
#define VersionNumber "9.5.0"
#define VersionDate "April 12, 2010"

/*
 * Version number to insure format of data base matches version of iconc
 *  and rtt.
 */
#define DVersion "9.0.00"

/*
 *  &version
 */
#define Version  "Icon Version " VersionNumber ", " VersionDate

/*
 * Version numbers to be sure that ucode is compatible with the linker
 * and that icode is compatible with the run-time system.
 */

#define UVersion "U9.0.00"

#if IntBits == 32
   #define IVersion "I9.0.00/32"
#endif				/* IntBits == 32 */

#if IntBits == 64
   #define IVersion "I9.0.00/64"
#endif				/* IntBits == 64 */