VirtualBox

source: kBuild/trunk/src/kmk/config.h.win@ 2759

Last change on this file since 2759 was 2759, checked in by bird, 10 years ago

More generic ENOSPC workaround for windows.

  • Property svn:eol-style set to native
File size: 16.1 KB
Line 
1/* config.h.W32 -- hand-massaged config.h file for Windows builds -*-C-*-
2
3Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
42006 Free Software Foundation, Inc.
5This file is part of GNU Make.
6
7GNU Make is free software; you can redistribute it and/or modify it under the
8terms of the GNU General Public License as published by the Free Software
9Foundation; either version 2, or (at your option) any later version.
10
11GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License along with
16GNU Make; see the file COPYING. If not, write to the Free Software
17Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */
18
19#ifndef ___config_h_win
20#define ___config_h_win
21
22/* Suppress some Visual C++ warnings.
23 Maybe after the code cleanup for ISO C we can remove some/all of these. */
24#if _MSC_VER > 1000
25# pragma warning(disable:4100) /* unreferenced formal parameter */
26# pragma warning(disable:4102) /* unreferenced label */
27# pragma warning(disable:4127) /* conditional expression is constant */
28# pragma warning(disable:4131) /* uses old-style declarator */
29# pragma warning(disable:4702) /* unreachable code */
30#endif
31
32/* Define to 1 if the `closedir' function returns void instead of `int'. */
33/* #undef CLOSEDIR_VOID */
34
35/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
36 systems. This function is required for `alloca.c' support on those systems.
37 */
38/* #undef CRAY_STACKSEG_END */
39
40/* Define to 1 if using `alloca.c'. */
41/* #undef C_ALLOCA */
42
43/* Define to 1 if using `getloadavg.c'. */
44/*#define C_GETLOADAVG 1*/
45
46/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
47/* #undef DGUX */
48
49/* Define to 1 if translation of program messages to the user's native
50 language is requested. */
51/* #undef ENABLE_NLS */
52
53/* Use high resolution file timestamps if nonzero. */
54#define FILE_TIMESTAMP_HI_RES 0
55
56/* Define to 1 if the `getloadavg' function needs to be run setuid or setgid.
57 */
58/* #undef GETLOADAVG_PRIVILEGED */
59
60/* Define to 1 if you have `alloca', as a function or macro. */
61#define HAVE_ALLOCA 1
62
63/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
64 */
65/* #undef HAVE_ALLOCA_H */
66
67/* Define if your compiler conforms to the ANSI C standard. */
68#define HAVE_ANSI_COMPILER 1
69
70/* Define to 1 if you have the `bsd_signal' function. */
71/* #undef HAVE_BSD_SIGNAL */
72
73/* Use case insensitive file names */
74/* #undef HAVE_CASE_INSENSITIVE_FS */
75
76/* Define if you have the clock_gettime function. */
77/* #undef HAVE_CLOCK_GETTIME */
78
79/* Define if the GNU dcgettext() function is already present or preinstalled.
80 */
81/* #undef HAVE_DCGETTEXT */
82
83/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
84 */
85#define HAVE_DIRENT_H 1
86
87/* Define to 1 if you have the <direct.h> header file, and it defines getcwd()
88 and chdir().
89 */
90#if (defined(_MSC_VER) || defined(__BORLANDC__)) && !defined(__INTERIX)
91# define HAVE_DIRECT_H 1
92#endif
93
94/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
95/* #undef HAVE_DOPRNT */
96
97/* Use platform specific coding */
98#define HAVE_DOS_PATHS 1
99
100/* Define to 1 if you have the `dup2' function. */
101#define HAVE_DUP2 1
102
103/* Define to 1 if you have the <fcntl.h> header file. */
104#define HAVE_FCNTL_H 1
105
106/* Define to 1 if you have the `fdopen' function. */
107/*#define HAVE_FDOPEN 1*/
108
109/* Define to 1 if you have the `fork' function. */
110/* #undef HAVE_FORK */
111
112/* Define to 1 if you have the `getcwd' function. */
113#define HAVE_GETCWD 1
114
115/* Define to 1 if you have the `getgroups' function. */
116/* #undef HAVE_GETGROUPS */
117
118/* Define to 1 if you have the `gethostbyname' function. */
119/* #undef HAVE_GETHOSTBYNAME */
120
121/* Define to 1 if you have the `gethostname' function. */
122/* #undef HAVE_GETHOSTNAME */
123
124/* Define to 1 if you have the `getloadavg' function. */
125/* #undef HAVE_GETLOADAVG */
126
127/* Define to 1 if you have the `getrlimit' function. */
128/* #undef HAVE_GETRLIMIT */
129
130/* Define if the GNU gettext() function is already present or preinstalled. */
131/* #undef HAVE_GETTEXT */
132
133/* Define if you have a standard gettimeofday function */
134/* #undef HAVE_GETTIMEOFDAY */
135
136/* Define if you have the iconv() function. */
137/* #undef HAVE_ICONV */
138
139/* Define to 1 if you have the <inttypes.h> header file. */
140/*#define HAVE_INTTYPES_H 1*/
141
142/* Define to 1 if you have the `dgc' library (-ldgc). */
143/* #undef HAVE_LIBDGC */
144
145/* Define to 1 if you have the `kstat' library (-lkstat). */
146/* #undef HAVE_LIBKSTAT */
147
148/* Define to 1 if you have the <limits.h> header file. */
149#define HAVE_LIMITS_H 1
150
151/* Define to 1 if you have the <locale.h> header file. */
152#define HAVE_LOCALE_H 1
153
154/* Define to 1 if you have the <mach/mach.h> header file. */
155/* #undef HAVE_MACH_MACH_H */
156
157/* Define to 1 if you have the `memmove' function. */
158#define HAVE_MEMMOVE 1
159
160/* Define to 1 if you have the <memory.h> header file. */
161#define HAVE_MEMORY_H 1
162
163/* Define to 1 if you have the `mkstemp' function. */
164/* #undef HAVE_MKSTEMP */
165
166/* Define to 1 if you have the `mktemp' function. */
167#define HAVE_MKTEMP 1
168
169/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
170/* #undef HAVE_NDIR_H */
171
172/* Define to 1 if you have the <nlist.h> header file. */
173/* #undef HAVE_NLIST_H */
174
175/* Define to 1 if you have the `pipe' function. */
176/* #undef HAVE_PIPE */
177
178/* Define to 1 if you have the `pstat_getdynamic' function. */
179/* #undef HAVE_PSTAT_GETDYNAMIC */
180
181/* Define to 1 if you have the `realpath' function. */
182/* #undef HAVE_REALPATH */
183
184/* Define if <signal.h> defines the SA_RESTART constant. */
185/* #undef HAVE_SA_RESTART */
186
187/* Define to 1 if you have the `setegid' function. */
188/* #undef HAVE_SETEGID */
189
190/* Define to 1 if you have the `seteuid' function. */
191/* #undef HAVE_SETEUID */
192
193/* Define to 1 if you have the `setlinebuf' function. */
194/* #undef HAVE_SETLINEBUF */
195
196/* Define to 1 if you have the `setlocale' function. */
197/*#define HAVE_SETLOCALE 1*/
198
199/* Define to 1 if you have the `setregid' function. */
200/* #undef HAVE_SETREGID */
201
202/* Define to 1 if you have the `setreuid' function. */
203/* #undef HAVE_SETREUID */
204
205/* Define to 1 if you have the `setrlimit' function. */
206/* #undef HAVE_SETRLIMIT */
207
208/* Define to 1 if you have the `setvbuf' function. */
209/*#define HAVE_SETVBUF 1 */
210
211/* Define to 1 if you have the `sigaction' function. */
212/* #undef HAVE_SIGACTION */
213
214/* Define to 1 if you have the `sigsetmask' function. */
215/* #undef HAVE_SIGSETMASK */
216
217/* Define to 1 if you have the `socket' function. */
218/* #undef HAVE_SOCKET */
219
220/* Define to 1 if you have the <stdarg.h> header file. */
221#define HAVE_STDARG_H 1
222
223/* Define to 1 if you have the <stdint.h> header file. */
224/*#define HAVE_STDINT_H 1*/
225
226/* Define to 1 if you have the <stdlib.h> header file. */
227#define HAVE_STDLIB_H 1
228
229/* Define to 1 if you have the `strcasecmp' function. */
230/* #undef HAVE_STRCASECMP */
231
232/* Define to 1 if you have the `strcmpi' function. */
233#define HAVE_STRCMPI 1
234
235/* Define to 1 if you have the `stricmp' function. */
236/* #undef HAVE_STRICMP */
237
238/* Define to 1 if you have the `strchr' function. */
239#define HAVE_STRCHR 1
240
241/* Define to 1 if you have the `strcoll' function and it is properly defined.
242 */
243#define HAVE_STRCOLL 1
244
245/* Define to 1 if you have the `strdup' function. */
246#define HAVE_STRDUP 1 /* bird */
247
248/* Define to 1 if you have the `strerror' function. */
249#define HAVE_STRERROR 1
250
251/* Define to 1 if you have the <strings.h> header file. */
252/* #define HAVE_STRINGS_H 1 */
253
254/* Define to 1 if you have the <string.h> header file. */
255#define HAVE_STRING_H 1
256
257/* Define to 1 if you have the `strsignal' function. */
258/* #undef HAVE_STRSIGNAL */
259
260/* Define to 1 if `n_un.n_name' is member of `struct nlist'. */
261/* #undef HAVE_STRUCT_NLIST_N_UN_N_NAME */
262
263/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
264 */
265/* #undef HAVE_SYS_DIR_H */
266
267/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
268 */
269/* #undef HAVE_SYS_NDIR_H */
270
271/* Define to 1 if you have the <sys/param.h> header file. */
272/* #define HAVE_SYS_PARAM_H 1 */
273
274/* Define to 1 if you have the <sys/resource.h> header file. */
275/* #undef HAVE_SYS_RESOURCE_H */
276
277/* Define to 1 if you have the <sys/stat.h> header file. */
278#define HAVE_SYS_STAT_H 1
279
280/* Define to 1 if you have the <sys/timeb.h> header file. */
281/*#define HAVE_SYS_TIMEB_H 1*/
282
283/* Define to 1 if you have the <sys/time.h> header file. */
284/*#define HAVE_SYS_TIME_H 1*/
285
286/* Define to 1 if you have the <sys/types.h> header file. */
287/*#define HAVE_SYS_TYPES_H 1*/
288
289/* Define to 1 if you have the <sys/wait.h> header file. */
290/* #undef HAVE_SYS_WAIT_H */
291
292/* Define this if you have the \`union wait' type in <sys/wait.h>. */
293/* #undef HAVE_UNION_WAIT */
294
295/* Define to 1 if you have the <unistd.h> header file. */
296/* #define HAVE_UNISTD_H 1*/
297
298/* Define to 1 if you have the <varargs.h> header file. */
299/* #undef HAVE_VARARGS_H */
300
301/* Define to 1 if you have the `vfork' function. */
302/* #undef HAVE_VFORK */
303
304/* Define to 1 if you have the <vfork.h> header file. */
305/* #undef HAVE_VFORK_H */
306
307/* Define to 1 if you have the `vprintf' function. */
308#define HAVE_VPRINTF 1
309
310
311/* Define to 1 if you have the `wait3' function. */
312/* #undef HAVE_WAIT3 */
313
314/* Define to 1 if you have the `waitpid' function. */
315/* #undef HAVE_WAITPID */
316
317/* Define to 1 if `fork' works. */
318/* #undef HAVE_WORKING_FORK */
319
320/* Define to 1 if `vfork' works. */
321/* #undef HAVE_WORKING_VFORK */
322
323/* Build host information. (not used by kmk) */
324#define MAKE_HOST "Windows32"
325
326/* Define this to enable job server support in GNU make. */
327/* #undef MAKE_JOBSERVER */
328
329/* Define to 1 if your `struct nlist' has an `n_un' member. Obsolete, depend
330 on `HAVE_STRUCT_NLIST_N_UN_N_NAME */
331/* #undef NLIST_NAME_UNION */
332
333/* Define if struct nlist.n_name is a pointer rather than an array. */
334/* #undef NLIST_STRUCT */
335
336/* Define to 1 if your C compiler doesn't accept -c and -o together. */
337/* #undef NO_MINUS_C_MINUS_O */
338
339/* Name of this package (needed by automake) */
340#define PACKAGE "make"
341
342/* Define to the address where bug reports for this package should be sent. */
343#define PACKAGE_BUGREPORT "[email protected]"
344
345/* Define to the full name of this package. */
346#define PACKAGE_NAME "GNU make"
347
348/* Define to the full name and version of this package. */
349#define PACKAGE_STRING "GNU make 3.82"
350
351/* Define to the one symbol short name of this package. */
352#define PACKAGE_TARNAME "make"
353
354/* Define to the version of this package. */
355#define PACKAGE_VERSION "3.82"
356
357/* Define to 1 if the C compiler supports function prototypes. */
358#define PROTOTYPES 1
359
360/* Define as the return type of signal handlers (`int' or `void'). */
361#define RETSIGTYPE void
362
363/* Define to the name of the SCCS 'get' command. */
364#define SCCS_GET "echo no sccs get"
365
366/* Define this if the SCCS 'get' command understands the '-G<file>' option. */
367/* #undef SCCS_GET_MINUS_G */
368
369/* Define to 1 if the `setvbuf' function takes the buffering type as its
370 second argument and the buffer pointer as the third, as on System V before
371 release 3. */
372/* #undef SETVBUF_REVERSED */
373
374/* If using the C implementation of alloca, define if you know the
375 direction of stack growth for your system; otherwise it will be
376 automatically deduced at run-time.
377 STACK_DIRECTION > 0 => grows toward higher addresses
378 STACK_DIRECTION < 0 => grows toward lower addresses
379 STACK_DIRECTION = 0 => direction of growth unknown */
380/* #undef STACK_DIRECTION */
381
382/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
383/* #undef STAT_MACROS_BROKEN */
384
385/* Define to 1 if you have the ANSI C header files. */
386#define STDC_HEADERS 1
387
388/* Define if struct stat contains a nanoseconds field */
389#define ST_MTIM_NSEC tv_nsec
390
391/* Define to 1 on System V Release 4. */
392/* #undef SVR4 */
393
394/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
395/* #define TIME_WITH_SYS_TIME 1 */
396
397/* Define to 1 for Encore UMAX. */
398/* #undef UMAX */
399
400/* Define to 1 for Encore UMAX 4.3 that has <inq_status/cpustats.h> instead of
401 <sys/cpustats.h>. */
402/* #undef UMAX4_3 */
403
404/* Version number of package */
405#define VERSION "3.82"
406
407/* Define if using the dmalloc debugging malloc package */
408/* #undef WITH_DMALLOC */
409
410/* Define to 1 if on AIX 3.
411 System headers sometimes define this.
412 We just want to avoid a redefinition error message. */
413#ifndef _ALL_SOURCE
414/* # undef _ALL_SOURCE */
415#endif
416
417/* Number of bits in a file offset, on hosts where this is settable. */
418/* #undef _FILE_OFFSET_BITS */
419
420/* Define for large files, on AIX-style hosts. */
421/* #undef _LARGE_FILES */
422
423/* Define to 1 if on MINIX. */
424/* #undef _MINIX */
425
426/* Define to 2 if the system does not provide POSIX.1 features except with
427 this defined. */
428/* #undef _POSIX_1_SOURCE */
429
430/* Define to 1 if you need to in order for `stat' and other things to work. */
431#define _POSIX_SOURCE 1
432
433/* Define like PROTOTYPES; this can be used by system headers. */
434/*#define __PROTOTYPES 1*/
435
436/* Define to empty if `const' does not conform to ANSI C. */
437/* #undef const */
438
439/* Define to `int' if <sys/types.h> doesn't define. */
440#define gid_t int
441
442/* Define to `int' if <sys/types.h> does not define. */
443#define pid_t int
444
445/* Define to `int' if <sys/types.h> doesn't define. */
446#define uid_t int
447
448/* Define uintmax_t if not defined in <stdint.h> or <inttypes.h>. */
449#if 0
450#define uintmax_t unsigned long
451#else
452#define uintmax_t unsigned __int64
453#endif
454
455/* Define as `fork' if `vfork' does not work. */
456/*#define vfork fork*/
457
458#if 0/* see above */
459/* Define to `unsigned long' or `unsigned long long'
460 if <inttypes.h> doesn't define. */
461#define uintmax_t unsigned long
462#endif
463
464/* Define if you support file names longer than 14 characters. */
465#define HAVE_LONG_FILE_NAMES 1
466
467/* Define if your struct stat has st_rdev. */
468#undef HAVE_ST_RDEV
469#define HAVE_ST_RDEV 1
470
471/* Define if you have the strftime function. */
472#undef HAVE_STRFTIME
473#define HAVE_STRFTIME 1
474
475/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
476/* #undef HAVE_SYS_WAIT_H */
477
478/* Define if your struct tm has tm_zone. */
479/* #undef HAVE_TM_ZONE */
480
481/* Define if you don't have tm_zone but do have the external array
482 tzname. */
483#undef HAVE_TZNAME
484#define HAVE_TZNAME 1
485
486/* Define if utime(file, NULL) sets file's timestamp to the present. */
487#undef HAVE_UTIME_NULL
488#define HAVE_UTIME_NULL 1
489
490/* Define to the installation directory for locales. */
491#define LOCALEDIR ""
492
493/*
494 * Refer to README.W32 for info on the following settings
495 */
496
497
498/*
499 * If you have a shell that does not grok 'sh -c quoted-command-line'
500 * correctly, you need this setting. Please see below for specific
501 * shell support.
502 */
503/*#define BATCH_MODE_ONLY_SHELL 1 */
504
505/*
506 * Define if you have the Cygnus "Cygwin" GNU Windows32 tool set.
507 * Do NOT define BATCH_MODE_ONLY_SHELL if you define HAVE_CYGWIN_SHELL
508 */
509/*#define HAVE_CYGWIN_SHELL 1 */
510
511/*
512 * Define if you have the MKS tool set or shell. Do NOT define
513 * BATCH_MODE_ONLY_SHELL if you define HAVE_MKS_SHELL
514 */
515/*#define HAVE_MKS_SHELL 1 */
516
517/*
518 * Enforce the mutual exclusivity restriction.
519 */
520#ifdef HAVE_MKS_SHELL
521#undef BATCH_MODE_ONLY_SHELL
522#endif
523
524#ifdef HAVE_CYGWIN_SHELL
525#undef BATCH_MODE_ONLY_SHELL
526#endif
527
528/* bird stat hacks. */
529#include <io.h>
530#include <direct.h>
531#include "nt/ntstat.h"
532
533/* bird dirent hack. */
534#define _DIRENT_H /* see w32/dirent.h */
535#include "nt/ntdir.h"
536#define _DIRENT_HAVE_D_NAMLEN 1
537#define _DIRENT_HAVE_D_TYPE 1
538
539/* bird: Not sure if this is necessary any more... */
540#define BATCH_MODE_ONLY_SHELL
541
542#include "inlined_memchr.h"
543
544#ifdef CONFIG_WITH_FAST_IS_SPACE
545# include <ctype.h>
546# if _MSC_VER >= 1400
547# include <intrin.h>
548# pragma intrinsic(_bittest)
549# pragma intrinsic(_bittestandset)
550# define space_map_size 32
551# define set_space_map_entry(ch) _bittestandset((long *)&space_map[0], (unsigned char)(ch))
552# define isspace(ch) _bittest((long *)&space_map[0], (unsigned char)(ch))
553# else
554# define space_map_size 256
555# define set_space_map_entry(ch) (space_map[(unsigned char)(ch)] = 1)
556# define isspace(ch) (space_map[(unsigned char)(ch)])
557# endif
558extern char space_map[space_map_size];
559#endif
560
561/* bird: Include mscfakes.h to make sure we have all it's tricks applied. */
562#ifndef ___mscfakes_h
563# include "kmkbuiltin/mscfakes.h"
564#endif
565
566#endif /* bird */
567
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette