Stunt: get codesetslib from its own Sourceforge repository.
[cake.git] / workbench / libs / codesetslib / src / version.h
bloba3aaca90bd4f1d1cdac938f3b819a9cc2cd72f0d
1 /***************************************************************************
3 codesets.library - Amiga shared library for handling different codesets
4 Copyright (C) 2001-2005 by Alfonso [alfie] Ranieri <alforan@tin.it>.
5 Copyright (C) 2005-2007 by codesets.library 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 codesets.library project: http://sourceforge.net/projects/codesetslib/
19 Most of the code included in this file was relicensed from GPL to LGPL
20 from the source code of SimpleMail (http://www.sf.net/projects/simplemail)
21 with full permissions by its authors.
23 $Id$
25 ***************************************************************************/
27 #ifndef _VERSION_H_
28 #define _VERSION_H_
30 #define LIB_VERSION 6
31 #define LIB_REVISION 4
33 #define LIB_REV_STRING "6.4"
34 #define LIB_DATE "29.07.2007"
36 #if defined(__PPC__)
37 #if defined(__MORPHOS__)
38 #define CPU " [MOS/PPC]"
39 #else
40 #define CPU " [OS4/PPC]"
41 #endif
42 #elif defined(_M68060) || defined(__M68060) || defined(__mc68060)
43 #define CPU " [060]"
44 #elif defined(_M68040) || defined(__M68040) || defined(__mc68040)
45 #define CPU " [040]"
46 #elif defined(_M68030) || defined(__M68030) || defined(__mc68030)
47 #define CPU " [030]"
48 #elif defined(_M68020) || defined(__M68020) || defined(__mc68020)
49 #define CPU " [020]"
50 #else
51 #define CPU ""
52 #endif
54 #define LIB_COPYRIGHT "Copyright (c) 2005-2007 codesets.library Open Source Team"
56 #endif // _VERSION_H_