]> sjero.net Git - wget/blob - windows/config-compiler.h
648ac50033199c37cdc306d467e9c69fb6868c0c
[wget] / windows / config-compiler.h
1 /* Support for various Windows compilation environments.
2    Copyright (C) 2005 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30
31 /* This file contains specifics of various compilers supported on the
32    Windows platform.  In this case "compiler" can refer either to the
33    specific compiler feature (such as how to construct a 64-bit
34    constant) or to a feature of the compilation environment shipped
35    with the compiler.
36
37    The file is divided into sections for each compiler.  Most of the
38    explanatory comments are in the first (MinGW) section to avoid
39    repetition.
40
41    Things that apply to *all* compilers, as well as things that are
42    specific to Wget, belong in src/mswindows.h.  */
43 \f
44 /* -------------------- */
45 /* MinGW (GCC) section. */
46 /* -------------------- */
47 #if defined __GNUC__
48
49 #define OS_TYPE "Windows-MinGW"
50
51 #define LL(n) n##LL
52
53 /* Transparently support statting large files, like POSIX's LFS API
54    does.  All Windows compilers we support use _stati64 (but have
55    different names for 2nd argument type, see below), so we use
56    that.  */
57 #define stat(fname, buf) _stati64 (fname, buf)
58
59 /* On Windows the 64-bit stat requires an explicitly different type
60    for the 2nd argument, so we define a struct_stat macro that expands
61    to the appropriate type on Windows, and to the regular struct stat
62    on Unix.
63
64    Note that Borland C 5.5 has 64-bit stat (_stati64), but not a
65    64-bit fstat!  Because of that we also need a struct_fstat that
66    points to struct_stat on Unix and on Windows, except under Borland,
67    where it points to the 32-bit struct stat.  */
68
69 #define struct_stat struct _stati64
70 #define struct_fstat struct _stati64
71
72 /* MinGW 3.7 (or older) prototypes gai_strerror(), but is missing
73    from all import libraries. */
74 #ifdef ENABLE_IPV6
75 # undef gai_strerror
76 # define gai_strerror windows_strerror
77 #endif
78 \f
79 /* -------------------- */
80 /* MS Visual C section. */
81 /* -------------------- */
82 #elif defined _MSC_VER
83
84 #define OS_TYPE "Windows-MSVC"
85
86 #define LL(n) n##I64
87
88 #define stat(fname, buf) _stati64 (fname, buf)
89 #define struct_stat struct _stati64
90 #define struct_fstat struct _stati64
91
92 #define isatty _isatty
93 \f
94 /* ------------------ */
95 /* Borland C section. */
96 /* ------------------ */
97 #elif defined __BORLANDC__
98
99 #define OS_TYPE "Windows-Borland"
100
101 #define LL(n) n##I64
102 #define stat(fname, buf) _stati64 (fname, buf)
103 #define struct_stat struct stati64
104 #define struct_fstat struct stat
105 \f
106 /* ------------------------------ */
107 /* Digital Mars Compiler section. */
108 /* ------------------------------ */
109 #elif defined __DMC__
110
111 #define OS_TYPE "Windows-DMC"
112
113 #define LL(n) n##LL
114 #undef stat
115 #undef struct_stat
116 #undef struct_fstat
117
118 /* DMC's runtime supports some POSIX and C99 features we use.  */
119 #define HAVE_USLEEP 1
120 #define HAVE_STDBOOL_H 1
121 #define HAVE__BOOL 1
122 \f
123 #else
124 # error Your compiler is not supported.
125 #endif