]> sjero.net Git - wget/blob - windows/config-compiler.h
[svn] Unify Windows-related config.h files into windows/config.h and
[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 LL(n) n##LL
50
51 /* Transparently support statting large files, like POSIX's LFS API
52    does.  All Windows compilers we support use _stati64 (but have
53    different names for 2nd argument type, see below), so we use
54    that.  */
55 #define stat(fname, buf) _stati64 (fname, buf)
56
57 /* On Windows the 64-bit stat requires an explicitly different type
58    for the 2nd argument, so we define a struct_stat macro that expands
59    to the appropriate type on Windows, and to the regular struct stat
60    on Unix.
61
62    Note that Borland C 5.5 has 64-bit stat (_stati64), but not a
63    64-bit fstat!  Because of that we also need a struct_fstat that
64    points to struct_stat on Unix and on Windows, except under Borland,
65    where it points to the 32-bit struct stat.  */
66
67 #define struct_stat struct _stati64
68 #define struct_fstat struct _stati64
69
70 /* MinGW 3.7 (or older) prototypes gai_strerror(), but is missing
71    from all import libraries. */
72 #ifdef ENABLE_IPV6
73 # undef gai_strerror
74 #  define gai_strerror windows_strerror
75 # endif
76 #endif
77 \f
78 /* -------------------- */
79 /* MS Visual C section. */
80 /* -------------------- */
81 #elif defined _MSC_VER
82
83 #define LL(n) n##I64
84
85 #define stat(fname, buf) _stati64 (fname, buf)
86 #define struct_stat struct _stati64
87 #define struct_fstat struct _stati64
88
89 #define isatty _isatty
90 \f
91 /* ------------------ */
92 /* Borland C section. */
93 /* ------------------ */
94 #elif defined __BORLANDC__
95
96 #define LL(n) n##I64
97 #define stat(fname, buf) _stati64 (fname, buf)
98 #define struct_stat struct stati64
99 #define struct_fstat struct stat
100 \f
101 /* ------------------------------ */
102 /* Digital Mars Compiler section. */
103 /* ------------------------------ */
104 #elif defined __DMC__
105
106 #define LL(n) n##LL
107 #undef stat
108 #undef struct_stat
109 #undef struct_fstat
110
111 /* DMC's runtime supports some POSIX and C99 features we use.  */
112 #define HAVE_USLEEP 1
113 #define HAVE_STDBOOL_H 1
114 #define HAVE__BOOL 1
115 \f
116 #else
117 # error Your compiler is not supported.
118 #endif