OSDN Git Service

Fix no pic
[uclinux-h8/uClinux-dist.git] / user / gnugk / version.h
1 /* -*- mode: c++; eval: (c-set-style "linux"); -*-
2 ** Copyright (C) 2002 Dr.-Ing. Martin Froehlich <Martin.Froehlich@mediaWays.net>
3 **
4 ** PURPOSE OF THIS FILE: PWLib conform versioning
5 **
6 ** WARNING: This file is edited automatically by the makefile, if opened by
7 **          an editor, reload from disk before adding own changes!
8 **
9 ** Note: Do not add spaces manually between macros and their values, that
10 ** may lead to not nice design of some markers and makes tham difficult to
11 ** quote correctly in e.g. a debugger
12 **
13 ** - Automatic Version Information via RCS:
14 **   $Id: version.h,v 1.32 2006/12/15 15:14:55 zvision Exp $
15 **   $Source: /cvsroot/openh323gk/openh323gk/version.h,v $
16 **
17 ** This program is free software; you can redistribute it and/or modify
18 ** it under the terms of the GNU General Public License as published by
19 ** the Free Software Foundation; either version 2 of the License, or
20 ** (at your option) any later version.
21 **
22 ** This program is distributed in the hope that it will be useful,
23 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 ** GNU General Public License for more details.
26 **
27 ** You should have received a copy of the GNU General Public License
28 ** along with this program; if not, write to the Free Software
29 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 **
31 */
32
33 #ifndef GNUGK_VERSION_H
34 #define GNUGK_VERSION_H "@(#) $Id: version.h,v 1.32 2006/12/15 15:14:55 zvision Exp $"
35
36 /* Major version number of the gatekeeper */
37 #ifndef GNUGK_MAJOR_VERSION
38 # define GNUGK_MAJOR_VERSION 2
39 #endif
40
41 /* Minor version number of the gatekeeper */
42 #ifndef GNUGK_MINOR_VERSION
43 # define GNUGK_MINOR_VERSION 2
44 #endif
45
46 /* Release status for the gatekeeper */
47 #ifndef GNUGK_BUILD_TYPE
48 /* might be: AlphaCode, BetaCode, ReleaseCode */
49 # define GNUGK_BUILD_TYPE ReleaseCode
50 /* Set this Macro if Release Code */
51 #endif
52
53 /* Build number of the gatekeeper */
54 #ifndef GNUGK_BUILD_NUMBER
55 # define GNUGK_BUILD_NUMBER 6
56 #endif
57
58 #endif  /* GNUGK_VERSION_H */