]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/compat/winhost.h
Fix some double Win32 #ifdefs
[bacula/bacula] / bacula / src / win32 / compat / winhost.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2008 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28
29 /*
30  * Define Host machine
31  */
32
33
34 #include "host.h"
35 #undef HOST_OS
36 #undef DISTNAME
37 #undef DISTVER
38
39 #ifdef HAVE_MINGW
40
41 #define HOST_OS  "Linux"
42 #define DISTNAME "Cross-compile"
43 #ifndef BACULA
44 #define BACULA "Bacula"
45 #endif
46 #ifdef _WIN64
47 # define DISTVER "Win64"
48 #else
49 # define DISTVER "Win32"
50 #endif
51
52 #else
53
54 extern DLL_IMP_EXP char WIN_VERSION_LONG[];
55 extern DLL_IMP_EXP char WIN_VERSION[];
56
57 #define HOST_OS  WIN_VERSION_LONG
58 #define DISTNAME "MVS"
59 #define DISTVER  WIN_VERSION
60
61 #endif