]> sjero.net Git - wget/blob - windows/config.h.mingw
[svn] Don't define HAVE_LIMITS_H, Wget no longer uses it.
[wget] / windows / config.h.mingw
1 /* Configuration header file.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2004
3    Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 In addition, as a special exception, the Free Software Foundation
22 gives permission to link the code of its release of Wget with the
23 OpenSSL project's "OpenSSL" library (or with modified versions of it
24 that use the same license as the "OpenSSL" library), and distribute
25 the linked executables.  You must obey the GNU General Public License
26 in all respects for all of the code used other than "OpenSSL".  If you
27 modify this file, you may extend this exception to your version of the
28 file, but you are not obligated to do so.  If you do not wish to do
29 so, delete this exception statement from your version.  */
30
31 #ifndef CONFIG_H
32 #define CONFIG_H
33
34 /* Define if you have the <alloca.h> header file.  */
35 /* #undef HAVE_ALLOCA_H */
36
37 /* Flag that C files should include <stdarg.h>, not <varargs.h>.  */
38 #define WGET_USE_STDARG
39
40 /* Define to empty if the keyword does not work.  */
41 /* #undef const */
42
43 /* Define to empty or __inline__ or __inline.  */
44 /* #undef inline */
45
46 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
47 /* #undef size_t */
48
49 /* Define to `int' if <sys/types.h> doesn't define.  */
50 /* #undef pid_t */
51
52 /* Define if you have the ANSI C header files.  */
53 #define STDC_HEADERS 1
54
55 /* Define as the return type of signal handlers (int or void).  */
56 #define RETSIGTYPE void
57
58 /* Define if your architecture is big endian (with the most
59    significant byte first).  */
60 /* #undef WORDS_BIGENDIAN */
61
62 #define ftruncate chsize
63
64 /* Define to the length of short. */
65 #define SIZEOF_SHORT 2
66
67 /* Define to the length of int. */
68 #define SIZEOF_INT 4
69
70 /* Define to the length of long. */
71 #define SIZEOF_LONG 4
72
73 /* Define to the length of long long. */
74 #define SIZEOF_LONG_LONG 8
75
76 /* Define this if you want the NLS support.  */
77 /* #undef HAVE_NLS */
78
79 /* Define if you want the FTP support for Opie compiled in.  */
80 #define ENABLE_OPIE 1
81
82 /* Define if you want the NTLM authorization support compiled in. */
83 #ifdef HAVE_SSL
84 # define ENABLE_NTLM
85 #endif
86
87 /* Define if you want the HTTP Digest Authorization compiled in.  */
88 #define ENABLE_DIGEST 1
89
90 /* Define if you want the debug output support compiled in.  */
91 #define ENABLE_DEBUG 1
92
93 /* Define to 1 if the system has the type `sig_atomic_t'. */
94 #define HAVE_SIG_ATOMIC_T 1
95
96 /* Define if you have sys/time.h header.  */
97 #define HAVE_SYS_TIME_H 1
98
99 /* Define if you can safely include both <sys/time.h> and <time.h>.  */
100 #define TIME_WITH_SYS_TIME 1
101
102 /* Define if you have struct utimbuf.  */
103 #define HAVE_STRUCT_UTIMBUF 1
104
105 /* Define if you have the uname function.  */
106 /* #undef HAVE_UNAME */
107
108 /* Define if you have a working version of mmap.  */
109 /* #undef HAVE_MMAP */
110
111 /* Define if you have the gethostname function.  */
112 /* #undef HAVE_GETHOSTNAME */
113
114 /* Define if you have the select function.  */
115 /* #undef HAVE_SELECT */
116
117 /* Define if you have the gettimeofday function.  */
118 /* #undef HAVE_GETTIMEOFDAY */
119
120 /* Define if you have the strdup function.  */
121 #define HAVE_STRDUP 1
122
123 /* Define if you have the sys/utsname.h header.  */
124 /* #undef HAVE_SYS_UTSNAME_H */
125
126 /* Define if you have the strerror function.  */
127 #define HAVE_STRERROR 1
128
129 /* Define if you have the snprintf function.  */
130 #define HAVE_SNPRINTF 1
131
132 /* Define if you have the vsnprintf function.  */
133 #define HAVE_VSNPRINTF 1
134
135 /* Define if you have the strstr function.  */
136 #define HAVE_STRSTR 1
137
138 /* Define if you have the strcasecmp function.  */
139 #define HAVE_STRCASECMP 1
140
141 /* Define if you have the strncasecmp function.  */
142 #define HAVE_STRNCASECMP 1
143
144 /* Define if you have the strpbrk function.  */
145 #define HAVE_STRPBRK 1
146
147 /* Define if you have the memmove function.  */
148 #define HAVE_MEMMOVE 1
149
150 /* Define if you have the strptime function.  */
151 /* #undef HAVE_STRPTIME */
152
153 /* Define if you have the mktime function.  */
154 #define HAVE_MKTIME 1
155
156 /* Define if you have the symlink function.  */
157 /* #undef HAVE_SYMLINK */
158
159 /* Define if you have the access function.  */
160 #define HAVE_ACCESS 1
161
162 /* Define if you have the isatty function.  */
163 #define HAVE_ISATTY 1
164
165 /* Define if you have the signal function.  */
166 /* #undef HAVE_SIGNAL */
167
168 /* Define if you have the sigsetjmp function.  */
169 /* #undef HAVE_SIGSETJMP */
170
171 /* Define if you have the sigblock function.  */
172 /* #undef HAVE_SIGBLOCK */
173
174 /* Define if you have the gettext function.  */
175 /* #undef HAVE_GETTEXT */
176
177 /* Define if you have the usleep function.  */
178 /* #undef HAVE_USLEEP */
179
180 /* Define if you have the <string.h> header file.  */
181 #define HAVE_STRING_H 1
182
183 /* Define if you have the <stdarg.h> header file.  */
184 #define HAVE_STDARG_H 1
185
186 /* Define if you have the <unistd.h> header file.  */
187 #define HAVE_UNISTD_H 1
188
189 /* Define if you have the <utime.h> header file.  */
190 #define HAVE_UTIME_H 1
191
192 /* Define if you have the <sys/utime.h> header file.  */
193 #define HAVE_SYS_UTIME_H 1
194
195 /* Define if you have the <termios.h> header file.  */
196 /* #undef HAVE_TERMIOS_H */
197
198 /* Define if you have the <sys/ioctl.h> header file.  */
199 /* #undef HAVE_SYS_IOCTL_H */
200
201 /* Define if you have the <sys/select.h> header file.  */
202 /* #undef HAVE_SYS_SELECT_H */
203
204 /* Define if you have the <pwd.h> header file.  */
205 /* #undef HAVE_PWD_H */
206
207 /* Define if you have the <signal.h> header file.  */
208 #define HAVE_SIGNAL_H 1
209
210 /* Define if you have the <setjmp.h> header file.  */
211 #define HAVE_SETJMP_H 1
212
213 /* Define if you have the <libintl.h> header file.  */
214 /* #undef HAVE_LIBINTL_H */
215
216 /* Define if you have the <locale.h> header file.  */
217 #define HAVE_LOCALE_H 1
218
219 /* Define to be the name of the operating system.  */
220 #define OS_TYPE "mingw32"
221
222 /* Define if you wish to compile with socks support.  */
223 /* #undef HAVE_SOCKS */
224
225 /* Define to 1 if ANSI function prototypes are usable.  */
226 #define PROTOTYPES 1
227
228 /* Define if all libs needed for ssl support are existing */
229 /* #undef HAVE_SSL */
230
231 /* Define if we're compiling in support for MD5.  */
232 #define HAVE_MD5 1
233
234 /* Define if we're using Solaris libmd5.  */
235 /* #undef HAVE_SOLARIS_MD5 */
236
237 /* Define if we're using OpenSSL md5.  */
238 /* #undef HAVE_OPENSSL_MD5 */
239
240 /* Define if we're using builtin (GNU) md5.c.  */
241 #define HAVE_BUILTIN_MD5 1
242
243 /* Define if you have the getaddrinfo function.  */
244 /* #undef HAVE_GETADDRINFO */
245
246 /* Define if the system headers support the AI_ADDRCONFIG flag. */
247 /* #undef HAVE_GETADDRINFO_AI_ADDRCONFIG */
248
249 /* Define if the system headers support the AI_V4MAPPED flag. */
250 /* #undef HAVE_GETADDRINFO_AI_V4MAPPED */
251
252 /* Define if the system headers support the AI_ALL flag. */
253 /* #undef HAVE_GETADDRINFO_AI_ALL */
254
255 /* Define if the system supports struct sockaddr_in6 */
256 /* #undef HAVE_HAVE_STRUCT_SOCKADDR_IN6 */
257
258 /* Define if struct sockaddr_in6 has the sin6_scope_id member */
259 #define HAVE_SOCKADDR_IN6_SCOPE_ID
260
261 /* Define if you want to enable the IPv6 support.  */
262 /* #undef ENABLE_IPV6 */
263
264 /* Defined to int or size_t on systems without socklen_t.  */
265 #define socklen_t int
266
267 /* Define if you have uint32_t.  */
268 #define HAVE_UINT32_T
269
270 #include "config-post.h"
271
272 #endif /* CONFIG_H */