File: version.h

package info (click to toggle)
unar 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,664 kB
  • sloc: ansic: 52,939; objc: 39,563; cpp: 4,074; makefile: 99; perl: 10
file content (75 lines) | stat: -rw-r--r-- 2,084 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#ifndef XADMASTER_VERSION_C
#define XADMASTER_VERSION_C

/*  $Id: version.h,v 1.6 2005/06/23 14:54:42 stoecker Exp $
    the xad unarchiving library system version data

    XAD library system for archive handling
    Copyright (C) 1998 and later by Dirk Stcker <soft@dstoecker.de>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#define BETA
#define XADMASTERVERSION   13
#define XADMASTERREVISION  0
#define DATETXT            "31.03.2003"

#include "../config.h"

#define LIBNAME   "xadmaster.library"

#ifdef DEBUG
  #define ADDTXTDEB  " DEBUG"
#else
  #define ADDTXTDEB  ""
#endif

#ifdef BETA
  #define ADDTXTBETA " BETA"
#else
  #define ADDTXTBETA ""
#endif

#ifdef DEBUGRESOURCE
  #define ADDTXTRES " RESOURCETRACK"
#else
  #define ADDTXTRES ""
#endif

#ifdef __MORPHOS__
  #define ADDTXTCPU     " MorphOS"
#elif defined(_M68060)
  #define ADDTXTCPU     " 060"
#elif defined(_M68040)
  #define ADDTXTCPU     " 040"
#elif defined(_M68030)
  #define ADDTXTCPU     " 030"
#elif defined(_M68020)
  #define ADDTXTCPU     " 020"
#else
  #define ADDTXTCPU     ""
#endif

#ifdef XAD_GPLCLIENTS
  #define DISTRIBUTION " (GPL)"
#else
  #define DISTRIBUTION " (LGPL)"
#endif

#define IDSTRING "xadmaster " VERSION " (" DATETXT ")" ADDTXTDEB ADDTXTCPU ADDTXTBETA ADDTXTRES \
                 DISTRIBUTION " by Dirk Stcker <soft@dstoecker.de>\r\n"

#endif /* XADMASTER_VERSION_C */