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