Fix backslashes in SHIBSP_PREFIX variable by manually creating it during the script...
[shibboleth/sp.git] / shibsp / version.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * version.h
19  * 
20  * Library version macros and constants 
21  */
22
23 #ifndef __shibsp_version_h__
24 #define __shibsp_version_h__
25
26 // This is all based on Xerces, on the theory it might be useful to
27 // support this kind of stuff in the future. If they ever yank some
28 // of this stuff, it can be copied into here.
29
30 #include <xercesc/util/XercesVersion.hpp>
31
32 // ---------------------------------------------------------------------------
33 // V E R S I O N   S P E C I F I C A T I O N
34
35 /**
36  * MODIFY THESE NUMERIC VALUES TO COINCIDE WITH OPENSAML VERSION
37  * AND DO NOT MODIFY ANYTHING ELSE IN THIS VERSION HEADER FILE
38  */
39
40 #define SHIBSP_VERSION_MAJOR 1
41 #define SHIBSP_VERSION_MINOR 0
42 #define SHIBSP_VERSION_REVISION 0
43
44 /** DO NOT MODIFY BELOW THIS LINE */
45
46 /**
47  * MAGIC THAT AUTOMATICALLY GENERATES THE FOLLOWING:
48  *
49  *      gShibSPVersionStr, gShibSPFullVersionStr, gShibSPMajVersion, gShibSPMinVersion, gShibSPRevision
50  */
51
52 // ---------------------------------------------------------------------------
53 // V E R S I O N   I N F O R M A T I O N
54
55 // ShibSP version strings; these particular macros cannot be used for
56 // conditional compilation as they are not numeric constants
57
58 #define SHIBSP_FULLVERSIONSTR INVK_CAT3_SEP_UNDERSCORE(SHIBSP_VERSION_MAJOR,SHIBSP_VERSION_MINOR,SHIBSP_VERSION_REVISION)
59 #define SHIBSP_FULLVERSIONDOT INVK_CAT3_SEP_PERIOD(SHIBSP_VERSION_MAJOR,SHIBSP_VERSION_MINOR,SHIBSP_VERSION_REVISION)
60 #define SHIBSP_FULLVERSIONNUM INVK_CAT3_SEP_NIL(SHIBSP_VERSION_MAJOR,SHIBSP_VERSION_MINOR,SHIBSP_VERSION_REVISION)
61 #define SHIBSP_VERSIONSTR     INVK_CAT2_SEP_UNDERSCORE(SHIBSP_VERSION_MAJOR,SHIBSP_VERSION_MINOR)
62
63 const char* const    gShibSPVersionStr = SHIBSP_VERSIONSTR;
64 const char* const    gShibSPFullVersionStr = SHIBSP_FULLVERSIONSTR;
65 const unsigned int   gShibSPMajVersion = SHIBSP_VERSION_MAJOR;
66 const unsigned int   gShibSPMinVersion = SHIBSP_VERSION_MINOR;
67 const unsigned int   gShibSPRevision   = SHIBSP_VERSION_REVISION;
68
69 // ShibSP version numeric constants that can be used for conditional
70 // compilation purposes.
71
72 #define _SHIBSP_VERSION CALC_EXPANDED_FORM (SHIBSP_VERSION_MAJOR,SHIBSP_VERSION_MINOR,SHIBSP_VERSION_REVISION)
73
74 #endif /* __shibsp_version_h__ */