Merging NList MCC 0.119 into the main branch.
[AROS.git] / workbench / classes / zune / nlist / nlisttree_mcp / version.h
blob20a85097d46252b2388beb8fcd20cded5a1c2a03
1 /***************************************************************************
3 NListtree.mcc - New Listtree MUI Custom Class
4 Copyright (C) 1999-2001 by Carsten Scholling
5 Copyright (C) 2001-2014 NList Open Source Team
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 NList classes Support Site: http://www.sf.net/projects/nlist-classes
19 $Id$
21 ***************************************************************************/
23 #ifndef _VERSION_H_
24 #define _VERSION_H_
26 // transforms a define into a string
27 #define STR(x) STR2(x)
28 #define STR2(x) #x
30 // for setting all necessary version information
31 #define LIB_VERSION 18
32 #define LIB_REVISION 33
33 #define LIB_DATE "05.04.2014"
34 #define LIB_COPYRIGHT "Copyright (C) 2001-2014 NList Open Source Team"
36 // set the LIB_REV_STRING
37 #define LIB_REV_STRING STR(LIB_VERSION) "." STR(LIB_REVISION)
39 // identify the system we are compiling for
40 #if defined(__amigaos4__)
41 #define SYSTEM "AmigaOS4"
42 #define SYSTEMSHORT "OS4"
43 #elif defined(__MORPHOS__)
44 #define SYSTEM "MorphOS"
45 #define SYSTEMSHORT "MOS"
46 #elif defined(__AROS__)
47 #define SYSTEM "AROS"
48 #define SYSTEMSHORT SYSTEM
49 #elif defined(__AMIGA__)
50 #define SYSTEM "AmigaOS3"
51 #define SYSTEMSHORT "OS3"
52 #else
53 #warning "Unsupported System - check SYSTEM define"
54 #define SYSTEM "???"
55 #define SYSTEMSHORT "???"
56 #endif
58 // identify the CPU model
59 #if defined(__PPC__) || defined(__powerpc__)
60 #define CPU "PPC"
61 #elif defined(_M68060) || defined(__M68060) || defined(__mc68060)
62 #define CPU "m68060"
63 #elif defined(_M68040) || defined(__M68040) || defined(__mc68040)
64 #define CPU "m68040"
65 #elif defined(_M68030) || defined(__M68030) || defined(__mc68030)
66 #define CPU "m68030"
67 #elif defined(_M68020) || defined(__M68020) || defined(__mc68020)
68 #define CPU "m68k"
69 #elif defined(_M68000) || defined(__M68000) || defined(__mc68000)
70 #define CPU "m68000"
71 #elif defined(__i386__)
72 #define CPU "x86"
73 #elif defined(__x86_64__)
74 #define CPU "x86_64"
75 #else
76 #warning "Unsupported CPU model - check CPU define"
77 #define CPU "???"
78 #endif
80 #endif // _VERSION_H_