]> Dogcows Code - chaz/yoink/blob - src/version.h
big batch of changes
[chaz/yoink] / src / version.h
1
2 /*******************************************************************************
3
4 Copyright (c) 2009, Charles McGarvey
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9
10 * Redistributions of source code must retain the above copyright notice,
11 this list of conditions and the following disclaimer.
12 * Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
14 and/or other materials provided with the distribution.
15
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27 *******************************************************************************/
28
29 #ifndef _VERSION_H_
30 #define _VERSION_H_
31
32
33 // yoinked from fluxbox
34
35 #ifdef __VERSION__
36 #define COMPILER_VERSION __VERSION__
37
38 #ifdef __GNUG__
39 #define COMPILER_NAME "GCC"
40 #endif // __GNUG__
41
42 #elif (defined(__sgi) || defined(sgi)) && __COMPILER_VERSION
43 #define COMPILER_NAME "SGI"
44 #define COMPILER_VERSION __COMPILER_VERSION
45 #elif defined(__MWERKS__)
46 #define COMPILER_NAME "MWERKS"
47 #define COMPILER_VERSION __MWERKS__
48 #elif defined(__INTEL_COMPILER) || defined(__ICC)
49 #define COMPILER_NAME "ICC"
50 #define COMPILER_VERSION __INTEL_COMPILER
51 #elif defined(__SUNPRO_CC)
52 #define COMPILER_NAME "SUNPRO_CC"
53 #define COMPILER_VERSION __SUNPRO_CC
54 #elif defined(__COMO__) && defined(__COMO_VERSION__)
55 #define COMPILER_NAME "COMO"
56 #define COMPILER_VERSION __COMO_VERSION__
57 #elif defined(_CRAYC) && defined(_REVISION)
58 #define COMPILER_NAME "CRAYC"
59 #define COMPILER_VERSION _REVISION
60 #elif defined(__DECCXX) && defined(__DECCXX)
61 #define COMPILER_NAME "DECCXX"
62 #define COMPILER_VERSION __DECCXX
63 #elif defined(__DCC__)
64 #define COMPILER_NAME "DCC"
65 #define COMPILER_VERSION __VERSION_NUMBER__
66 #endif // __VERSION__
67
68 #ifdef COMPILER_NAME
69 #ifdef COMPILER_VERSION
70 #define COMPILER_STRING COMPILER_NAME" "COMPILER_VERSION
71 #else
72 #define COMPILER_STRING COMPILER_NAME" (unknown version)"
73 #define COMPILER_VERSION "Unknown"
74 #endif // COMPILER_VERSION
75 #else
76 #define COMPILER_STRING "Unknown"
77 #define COMPILER_NAME "Unknown"
78 #endif // COMPILER_NAME
79
80
81 #endif // _VERSION_H_
82
83 /** vim: set ts=4 sw=4 tw=80: *************************************************/
84
This page took 0.035271 seconds and 4 git commands to generate.