• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 2010 - 2013 UNISYS CORPORATION
2  * All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or (at
7  * your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12  * NON INFRINGEMENT.  See the GNU General Public License for more
13  * details.
14  */
15 
16 /* version.h */
17 
18 /*  Common version/release info needed by all components goes here.
19  *  (This file must compile cleanly in all environments.)
20  *  Ultimately, this will be combined with defines generated dynamically as
21  *  part of the sysgen, and some of the defines below may in fact end up
22  *  being replaced with dynamically generated ones.
23  */
24 #ifndef __VERSION_H__
25 #define __VERSION_H__
26 
27 #define SPARVER1 "1"
28 #define SPARVER2 "0"
29 #define SPARVER3 "0"
30 #define SPARVER4 "0"
31 
32 #define  VERSION        SPARVER1 "." SPARVER2 "." SPARVER3 "." SPARVER4
33 #define  VERSIONDATE    __DATE__
34 
35 /* Here are various version forms needed in Windows environments.
36  */
37 #define VISOR_PRODUCTVERSION      SPARVERCOMMA
38 #define VISOR_PRODUCTVERSION_STR  SPARVER1 "." SPARVER2 "." SPARVER3 "." \
39 	SPARVER4
40 #define VISOR_OBJECTVERSION_STR   SPARVER1 "," SPARVER2 "," SPARVER3 "," \
41 	SPARVER4
42 
43 #define  COPYRIGHT      "Unisys Corporation"
44 #define  COPYRIGHTDATE  "2010 - 2013"
45 
46 #endif
47