Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / winconfig.h
1 #ifndef _MSC_VER
2 #include "cygconfig.h"
3 #else
4
5 /* The architecture this is running on */
6 #if defined(_M_IA64)
7 #define MONO_ARCHITECTURE "ia64"
8 #elif defined(_M_AMD64)
9 #define MONO_ARCHITECTURE "amd64"
10 #elif defined(_M_IX86)
11 #define MONO_ARCHITECTURE "x86"
12 #else
13 #error Unknown architecture
14 #endif
15
16 #ifndef WINVER
17 #define WINVER 0x0A00
18 #endif
19
20 #include <SDKDDKVer.h>
21
22 #if _WIN32_WINNT < 0x0600
23 #error "Mono requires Windows Vista or later"
24 #endif /* _WIN32_WINNT < 0x0600 */
25
26 #ifndef HAVE_WINAPI_FAMILY_SUPPORT
27
28 #define HAVE_WINAPI_FAMILY_SUPPORT
29
30 /* WIN API Family support */
31 #include <winapifamily.h>
32
33 #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
34         #define HAVE_CLASSIC_WINAPI_SUPPORT 1
35         #define HAVE_UWP_WINAPI_SUPPORT 0
36 #elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
37         #define HAVE_CLASSIC_WINAPI_SUPPORT 0
38         #define HAVE_UWP_WINAPI_SUPPORT 1
39 #ifndef HAVE_EXTERN_DEFINED_WINAPI_SUPPORT
40         #error Unsupported WINAPI family
41 #endif
42 #else
43         #define HAVE_CLASSIC_WINAPI_SUPPORT 0
44         #define HAVE_UWP_WINAPI_SUPPORT 0
45 #ifndef HAVE_EXTERN_DEFINED_WINAPI_SUPPORT
46         #error Unsupported WINAPI family
47 #endif
48 #endif
49
50 #endif
51
52 /*
53  * Features that are not required in the Windows port
54  */
55 #define DISABLE_PORTABILITY 1
56
57 /* Windows does not have symlinks */
58 #define HOST_NO_SYMLINKS 1
59
60 /* String of disabled features */
61 #define DISABLED_FEATURES "none"
62
63 /* Disable AOT support */
64 /* #undef DISABLE_AOT */
65
66 /* Disable COM support */
67 /* #undef DISABLE_COM */
68
69 /* Disable runtime debugging support */
70 /* #undef DISABLE_DEBUG */
71
72 /* Disable System.Decimal support */
73 /* #undef DISABLE_DECIMAL */
74
75 /* Disable generics support */
76 /* #undef DISABLE_GENERICS */
77
78 /* Disable support for huge assemblies */
79 /* #undef DISABLE_LARGE_CODE */
80
81 /* Disable support debug logging */
82 /* #undef DISABLE_LOGGING */
83
84 /* Disable P/Invoke support */
85 /* #undef DISABLE_PINVOKE */
86
87 /* Disable default profiler support */
88 /* #undef DISABLE_PROFILER */
89
90 /* Disable reflection emit support */
91 /* #undef DISABLE_REFLECTION_EMIT */
92
93 /* Disable advanced SSA JIT optimizations */
94 /* #undef DISABLE_SSA */
95
96 /* Enable DTrace probes */
97 /* #undef ENABLE_DTRACE */
98
99 /* Has the 'aintl' function */
100 /* #undef HAVE_AINTL */
101
102 /* Supports C99 array initialization */
103 /* #undef HAVE_ARRAY_ELEM_INIT */
104
105 /* Define to 1 if you have the <attr/xattr.h> header file. */
106 /* #undef HAVE_ATTR_XATTR_H */
107
108 /* Define to 1 if you have the `backtrace_symbols' function. */
109 /* #undef HAVE_BACKTRACE_SYMBOLS */
110
111 /* Define to 1 if the system has the type `blkcnt_t'. */
112 /* #undef HAVE_BLKCNT_T */
113
114 /* Define to 1 if the system has the type `blksize_t'. */
115 /* #undef HAVE_BLKSIZE_T */
116
117 /* Have Boehm GC */
118 /* #define HAVE_BOEHM_GC 1 */
119
120 /* Define to 1 if you have the <checklist.h> header file. */
121 /* #undef HAVE_CHECKLIST_H */
122
123 /* Define to 1 if you have the <complex.h> header file. */
124 #define HAVE_COMPLEX_H 1
125
126 /* Define to 1 if you have the `system' function. */
127 #if HAVE_WINAPI_FAMILY_SUPPORT(HAVE_CLASSIC_WINAPI_SUPPORT)
128 #define HAVE_SYSTEM 1
129 #endif
130
131
132 /* Have /dev/random */
133 #define HAVE_CRYPT_RNG 1
134
135 /* Define to 1 if you have the <curses.h> header file. */
136 /* #undef HAVE_CURSES_H */
137
138 /* Define to 1 if you have the declaration of `InterlockedAdd',
139    and to 0 if you don't. */
140 #define HAVE_DECL_INTERLOCKEDADD 1
141
142 /* Define to 1 if you have the declaration of `InterlockedAdd64',
143    and to 0 if you don't. */
144 #define HAVE_DECL_INTERLOCKEDADD64 1
145
146 /* Define to 1 if you have the declaration of `InterlockedCompareExchange64',
147    and to 0 if you don't. */
148 #define HAVE_DECL_INTERLOCKEDCOMPAREEXCHANGE64 1
149
150 /* Define to 1 if you have the declaration of `InterlockedDecrement64',
151    and to 0 if you don't. */
152 #define HAVE_DECL_INTERLOCKEDDECREMENT64 1
153
154 /* Define to 1 if you have the declaration of `InterlockedExchange64',
155    and to 0 if you don't. */
156 #define HAVE_DECL_INTERLOCKEDEXCHANGE64 1
157
158 /* Define to 1 if you have the declaration of `InterlockedIncrement64',
159    and to 0 if you don't. */
160 #define HAVE_DECL_INTERLOCKEDINCREMENT64 1
161
162 /* Define to 1 if you have the declaration of `__readfsdword',
163    and to 0 if you don't. */
164 #define HAVE_DECL___READFSDWORD 1
165
166 /* Define to 1 if you have the <dirent.h> header file. */
167 /* #define HAVE_DIRENT_H 1 */
168
169 /* Define to 1 if you have the <dlfcn.h> header file. */
170 /* #undef HAVE_DLFCN_H */
171
172 /* dlopen-based dynamic loader available */
173 /* #undef HAVE_DL_LOADER */
174
175 /* Define to 1 if you have the <elf.h> header file. */
176 /* #undef HAVE_ELF_H */
177
178 /* epoll supported */
179 /* #undef HAVE_EPOLL */
180
181 /* Define to 1 if you have the `epoll_ctl' function. */
182 /* #undef HAVE_EPOLL_CTL */
183
184 /* Define to 1 if you have the <execinfo.h> header file. */
185 /* #undef HAVE_EXECINFO_H */
186
187 /* Define to 1 if you have the `fgetgrent' function. */
188 /* #undef HAVE_FGETGRENT */
189
190 /* Define to 1 if you have the `fgetpwent' function. */
191 /* #undef HAVE_FGETPWENT */
192
193 /* Define to 1 if you have the `finite' function. */
194 /* #undef HAVE_FINITE */
195
196 /* Define to 1 if you have the <fstab.h> header file. */
197 /* #undef HAVE_FSTAB_H */
198
199 /* Define to 1 if you have the `fstatfs' function. */
200 /* #undef HAVE_FSTATFS */
201
202 /* Define to 1 if you have the `fstatvfs' function. */
203 /* #undef HAVE_FSTATVFS */
204
205 /* Define to 1 if you have the `getaddrinfo' function. */
206 #define HAVE_GETADDRINFO 1
207
208 /* Define to 1 if you have the `getnameinfo' function. */
209 #define HAVE_GETNAMEINFO 1
210
211 /* Define to 1 if you have the `getprotobyname' function. */
212 #define HAVE_GETPROTOBYNAME 1
213
214 /* Define to 1 if you have the `getdomainname' function. */
215 /* #undef HAVE_GETDOMAINNAME */
216
217 /* Define to 1 if you have the `getfsstat' function. */
218 /* #undef HAVE_GETFSSTAT */
219
220 /* Define to 1 if you have the `getgrgid_r' function. */
221 /* #undef HAVE_GETGRGID_R */
222
223 /* Define to 1 if you have the `getgrnam_r' function. */
224 /* #undef HAVE_GETGRNAM_R */
225
226 /* Have gethostbyname2_r */
227 /* #undef HAVE_GETHOSTBYNAME2_R */
228
229 /* Define to 1 if you have the `getpriority' function. */
230 /* #undef HAVE_GETPRIORITY */
231
232 /* Define to 1 if you have the `GetProcessId' function. */
233 #define HAVE_GETPROCESSID 1
234
235 /* Define to 1 if you have the `getpwnam_r' function. */
236 /* #undef HAVE_GETPWNAM_R */
237
238 /* Define to 1 if you have the `getpwuid_r' function. */
239 /* #undef HAVE_GETPWUID_R */
240
241 /* Define to 1 if you have the `getresuid' function. */
242 /* #undef HAVE_GETRESUID */
243
244 /* Define to 1 if you have the `getrusage' function. */
245 /* #undef HAVE_GETRUSAGE */
246
247 /* Define to 1 if you have the <grp.h> header file. */
248 /* #undef HAVE_GRP_H */
249
250 /* Define to 1 if you have the <ieeefp.h> header file. */
251 /* #undef HAVE_IEEEFP_H */
252
253 /* Define to 1 if you have the `inet_aton' function. */
254 /* #undef HAVE_INET_ATON */
255
256 /* Define to 1 if you have the `inet_pton' function. */
257 #define HAVE_INET_PTON 1
258
259 /* Define to 1 if you have the <inttypes.h> header file. */
260 #define HAVE_INTTYPES_H 1
261
262 /* Have IPV6_PKTINFO */
263 /* #undef HAVE_IPV6_PKTINFO */
264
265 /* Have IP_DONTFRAGMENT */
266 /* #undef HAVE_IP_DONTFRAGMENT */
267
268 /* Have IP_MTU_DISCOVER */
269 /* #undef HAVE_IP_MTU_DISCOVER */
270
271 /* Have IP_PKTINFO */
272 /* #undef HAVE_IP_PKTINFO */
273
274 /* Define to 1 if you have the `isfinite' function. */
275 /* #undef HAVE_ISFINITE */
276
277 /* isinf available */
278 #define HAVE_ISINF 1
279
280 /* Define to 1 if you have the `kqueue' function. */
281 /* #undef HAVE_KQUEUE */
282
283 /* Have __thread keyword */
284 /* #undef HAVE_KW_THREAD */
285
286 /* Have large file support */
287 /* #undef HAVE_LARGE_FILE_SUPPORT */
288
289 /* Define to 1 if you have the `unwind' library (-lunwind). */
290 /* #undef HAVE_LIBUNWIND */
291
292 /* Define to 1 if you have the <linux/rtc.h> header file. */
293 /* #undef HAVE_LINUX_RTC_H */
294
295 /* Define to 1 if you have the `lutimes' function. */
296 /* #undef HAVE_LUTIMES */
297
298 /* Define to 1 if you have the `madvise' function. */
299 /* #undef HAVE_MADVISE */
300
301 /* Define to 1 if you have the <memory.h> header file. */
302 #define HAVE_MEMORY_H 1
303
304 /* Define to 1 if you have the `mkstemp' function. */
305 /* #undef HAVE_MKSTEMP */
306
307 /* Define to 1 if you have the `mmap' function. */
308 /* #undef HAVE_MMAP */
309
310 /* The GC can move objects. */
311 /* #undef HAVE_MOVING_COLLECTOR */
312
313 /* Define to 1 if you have the `mremap' function. */
314 /* #undef HAVE_MREMAP */
315
316 /* Have MSG_NOSIGNAL */
317 /* #undef HAVE_MSG_NOSIGNAL */
318
319 /* Define to 1 if you have the <netdb.h> header file. */
320 /* #undef HAVE_NETDB_H */
321
322 /* Define to 1 if you have the <net/if.h> header file. */
323 /* #undef HAVE_NET_IF_H */
324
325 /* No GC support. */
326 /* #undef HAVE_NULL_GC */
327
328 /* Define to 1 if you have the `poll' function. */
329 /* #undef HAVE_POLL */
330
331 /* Define to 1 if you have the <poll.h> header file. */
332 /* #undef HAVE_POLL_H */
333
334 /* Define to 1 if you have the `posix_fadvise' function. */
335 /* #undef HAVE_POSIX_FADVISE */
336
337 /* Define to 1 if you have the `posix_fallocate' function. */
338 /* #undef HAVE_POSIX_FALLOCATE */
339
340 /* Define to 1 if you have the `posix_madvise' function. */
341 /* #undef HAVE_POSIX_MADVISE */
342
343 /* Define to 1 if you have the `pthread_attr_getstack' function. */
344 /* #undef HAVE_PTHREAD_ATTR_GETSTACK */
345
346 /* Define to 1 if you have the `pthread_attr_get_np' function. */
347 /* #undef HAVE_PTHREAD_ATTR_GET_NP */
348
349 /* Define to 1 if you have the `pthread_attr_setstacksize' function. */
350 /* #undef HAVE_PTHREAD_ATTR_SETSTACKSIZE */
351
352 /* Define to 1 if you have the `pthread_getattr_np' function. */
353 /* #undef HAVE_PTHREAD_GETATTR_NP */
354
355 /* Define to 1 if you have the `pthread_get_stackaddr_np' function. */
356 /* #undef HAVE_PTHREAD_GET_STACKADDR_NP */
357
358 /* Define to 1 if you have the `pthread_get_stacksize_np' function. */
359 /* #undef HAVE_PTHREAD_GET_STACKSIZE_NP */
360
361 /* Define to 1 if you have the <pthread.h> header file. */
362 /* #undef HAVE_PTHREAD_H */
363
364 /* Define to 1 if you have the `pthread_mutex_timedlock' function. */
365 /* #undef HAVE_PTHREAD_MUTEX_TIMEDLOCK */
366
367 /* Define to 1 if you have the `remap_file_pages' function. */
368 /* #undef HAVE_REMAP_FILE_PAGES */
369
370 /* Define to 1 if you have the `sched_setaffinity' function. */
371 /* #undef HAVE_SCHED_SETAFFINITY */
372
373 /* Define to 1 if you have the <semaphore.h> header file. */
374 /* #undef HAVE_SEMAPHORE_H */
375
376 /* Define to 1 if you have the `sendfile' function. */
377 /* #undef HAVE_SENDFILE */
378
379 /* Define to 1 if you have the `setdomainname' function. */
380 /* #undef HAVE_SETDOMAINNAME */
381
382 /* Define to 1 if you have the `sethostid' function. */
383 /* #undef HAVE_SETHOSTID */
384
385 /* Define to 1 if you have the `setpriority' function. */
386 /* #undef HAVE_SETPRIORITY */
387
388 /* Define to 1 if you have the `setresuid' function. */
389 /* #undef HAVE_SETRESUID */
390
391 /* Using the simple generational GC. */
392 /* #undef HAVE_SGEN_GC */
393
394  /* Have signal */
395 #define HAVE_SIGNAL 1
396
397  /* Define to 1 if you have the <signal.h> header file. */
398 #define HAVE_SIGNAL_H 1
399
400 /* Have signbit */
401 /* #undef HAVE_SIGNBIT */
402
403 /* Can get interface list */
404 /* #undef HAVE_SIOCGIFCONF */
405
406 /* sockaddr_in6 has sin6_len */
407 /* #undef HAVE_SOCKADDR_IN6_SIN_LEN */
408
409 /* sockaddr_in has sin_len */
410 /* #undef HAVE_SOCKADDR_IN_SIN_LEN */
411
412 /* Have socklen_t */
413 /* #undef HAVE_SOCKLEN_T */
414
415 /* Have SOL_IP */
416 /* #undef HAVE_SOL_IP */
417
418 /* Have SOL_IPV6 */
419 /* #undef HAVE_SOL_IPV6 */
420
421 /* Have SOL_TCP */
422 /* #undef HAVE_SOL_TCP */
423
424 /* Define to 1 if you have the `statfs' function. */
425 /* #undef HAVE_STATFS */
426
427 /* Define to 1 if you have the `statvfs' function. */
428 /* #undef HAVE_STATVFS */
429
430 /* Define to 1 if you have the <stdint.h> header file. */
431 /* #define HAVE_STDINT_H 1 */
432
433 /* Define to 1 if you have the <stdlib.h> header file. */
434 #define HAVE_STDLIB_H 1
435
436 /* Define to 1 if you have the `stime' function. */
437 /* #undef HAVE_STIME */
438
439 /* Define to 1 if you have the `strerror_r' function. */
440 /* #undef HAVE_STRERROR_R */
441
442 /* Define to 1 if you have the <strings.h> header file. */
443 #define HAVE_STRINGS_H 1
444
445 /* Define to 1 if you have the <string.h> header file. */
446 #define HAVE_STRING_H 1
447
448 /* Define to 1 if `d_off' is member of `struct dirent'. */
449 /* #undef HAVE_STRUCT_DIRENT_D_OFF */
450
451 /* Define to 1 if `d_reclen' is member of `struct dirent'. */
452 /* #undef HAVE_STRUCT_DIRENT_D_RECLEN */
453
454 /* Define to 1 if `d_type' is member of `struct dirent'. */
455 /* #undef HAVE_STRUCT_DIRENT_D_TYPE */
456
457 /* Have struct ip_mreq */
458 #define HAVE_STRUCT_IP_MREQ 1
459
460 /* Have struct ip_mreqn */
461 /* #undef HAVE_STRUCT_IP_MREQN */
462
463 /* Define to 1 if the system has the type `struct pollfd'. */
464 /* #undef HAVE_STRUCT_POLLFD */
465
466 /* Define to 1 if the system has the type `struct stat'. */
467 /* #undef HAVE_STRUCT_STAT */
468
469 /* Define to 1 if the system has the type `struct timeval'. */
470 /* #undef HAVE_STRUCT_TIMEVAL */
471
472 /* Define to 1 if the system has the type `struct timezone'. */
473 /* #undef HAVE_STRUCT_TIMEZONE */
474
475 /* Define to 1 if the system has the type `struct utimbuf'. */
476 /* #undef HAVE_STRUCT_UTIMBUF */
477
478 /* Define to 1 if the system has the type `suseconds_t'. */
479 /* #undef HAVE_SUSECONDS_T */
480
481 /* Define to 1 if you have the <syslog.h> header file. */
482 /* #undef HAVE_SYSLOG_H */
483
484 /* Define to 1 if you have the <sys/epoll.h> header file. */
485 /* #undef HAVE_SYS_EPOLL_H */
486
487 /* Define to 1 if you have the <sys/extattr.h> header file. */
488 /* #undef HAVE_SYS_EXTATTR_H */
489
490 /* Define to 1 if you have the <sys/filio.h> header file. */
491 /* #undef HAVE_SYS_FILIO_H */
492
493 /* Define to 1 if you have the <sys/ioctl.h> header file. */
494 /* #undef HAVE_SYS_IOCTL_H */
495
496 /* Define to 1 if you have the <sys/mkdev.h> header file. */
497 /* #undef HAVE_SYS_MKDEV_H */
498
499 /* Define to 1 if you have the <sys/mman.h> header file. */
500 /* #undef HAVE_SYS_MMAN_H */
501
502 /* Define to 1 if you have the <sys/param.h> header file. */
503 /* #undef HAVE_SYS_PARAM_H */
504
505 /* Define to 1 if you have the <sys/poll.h> header file. */
506 /* #undef HAVE_SYS_POLL_H */
507
508 /* Define to 1 if you have the <sys/sdt.h> header file. */
509 /* #undef HAVE_SYS_SDT_H */
510
511 /* Define to 1 if you have the <sys/sendfile.h> header file. */
512 /* #undef HAVE_SYS_SENDFILE_H */
513
514 /* Define to 1 if you have the <sys/sockio.h> header file. */
515 /* #undef HAVE_SYS_SOCKIO_H */
516
517 /* Define to 1 if you have the <sys/statvfs.h> header file. */
518 /* #undef HAVE_SYS_STATVFS_H */
519
520 /* Define to 1 if you have the <sys/stat.h> header file. */
521 #define HAVE_SYS_STAT_H 1
522
523 /* Define to 1 if you have the <sys/syscall.h> header file. */
524 /* #undef HAVE_SYS_SYSCALL_H */
525
526 /* Define to 1 if you have the <sys/time.h> header file. */
527 /* #undef HAVE_SYS_TIME_H */
528
529 /* Define to 1 if you have the <sys/types.h> header file. */
530 #define HAVE_SYS_TYPES_H 1
531
532 /* Define to 1 if you have the <sys/un.h> header file. */
533 /* #undef HAVE_SYS_UN_H */
534
535 /* Define to 1 if you have the <sys/utime.h> header file. */
536 #define HAVE_SYS_UTIME_H 1
537
538 /* Define to 1 if you have the <sys/vfstab.h> header file. */
539 /* #undef HAVE_SYS_VFSTAB_H */
540
541 /* Define to 1 if you have the <sys/wait.h> header file. */
542 /* #undef HAVE_SYS_WAIT_H */
543
544 /* Define to 1 if you have the <sys/xattr.h> header file. */
545 /* #undef HAVE_SYS_XATTR_H */
546
547 /* Define to 1 if you have the <termios.h> header file. */
548 /* #undef HAVE_TERMIOS_H */
549
550 /* Define to 1 if you have the <term.h> header file. */
551 /* #undef HAVE_TERM_H */
552
553 /* Have timezone variable */
554 /* #undef HAVE_TIMEZONE */
555
556 /* tld_model available */
557 /* #undef HAVE_TLS_MODEL_ATTR */
558
559 /* Have tm_gmtoff */
560 /* #undef HAVE_TM_GMTOFF */
561
562 /* Define to 1 if you have the `trunc' function. */
563 #define HAVE_TRUNC 1
564
565 /* Define to 1 if you have the `ttyname_r' function. */
566 /* #undef HAVE_TTYNAME_R */
567
568 /* Define to 1 if you have the <unistd.h> header file. */
569 /* #define HAVE_UNISTD_H 1 */
570
571 /* Define to 1 if you have the <utime.h> header file. */
572 /* #define HAVE_UTIME_H 1 */
573
574 /* Define to 1 if you have the <valgrind/memcheck.h> header file. */
575 /* #undef HAVE_VALGRIND_MEMCHECK_H */
576
577 /* Support for the visibility ("hidden") attribute */
578 /* #define HAVE_VISIBILITY_HIDDEN 1 */
579
580 /* Define to 1 if you have the `vsnprintf' function. */
581 /* #undef HAVE_VSNPRINTF */
582
583 /* Define to 1 if you have the <wchar.h> header file. */
584 #define HAVE_WCHAR_H 1
585
586 /* Define to 1 if you have IPv6 support. */
587 #define HAVE_STRUCT_SOCKADDR_IN6 1
588
589 /* Defined as strtok_s in eglib-config.hw */
590 #define HAVE_STRTOK_R 1
591
592 /* Have a working sigaltstack */
593 /* #undef HAVE_WORKING_SIGALTSTACK */
594
595 /* The GC needs write barriers. */
596 /* #undef HAVE_WRITE_BARRIERS */
597
598 /* Have system zlib */
599 /* #define HAVE_ZLIB 1 */
600
601 /* Architecture uses registers for Parameters */
602 /* #undef MONO_ARCH_REGPARMS */
603
604 /* Enable the allocation and indexing of arrays greater than Int32.MaxValue */
605 /* #undef MONO_BIG_ARRAYS */
606
607 /* Xen-specific behaviour */
608 /* #define MONO_XEN_OPT 1 */
609
610 /* Length of zero length arrays */
611 #define MONO_ZERO_LEN_ARRAY 1
612
613 /* Name of /dev/random */
614 #define NAME_DEV_RANDOM ""
615
616 /* Define if Unix sockets cannot be created in an anonymous namespace */
617 /* #undef NEED_LINK_UNLINK */
618
619 /* Name of package */
620 #define PACKAGE "mono"
621
622 /* Define to the address where bug reports for this package should be sent. */
623 #define PACKAGE_BUGREPORT "Hans_Boehm@hp.com"
624
625 /* Define to the full name of this package. */
626 #define PACKAGE_NAME "libgc-mono"
627
628 /* Define to the full name and version of this package. */
629 #define PACKAGE_STRING "libgc-mono 6.6"
630
631 /* Define to the one symbol short name of this package. */
632 #define PACKAGE_TARNAME "libgc-mono"
633
634 /* Define to the version of this package. */
635 #define PACKAGE_VERSION "6.6"
636
637 /* Platform is Win32 */
638 #define HOST_WIN32 1
639 #define TARGET_WIN32 1
640
641 #ifdef _WIN64
642 #define TARGET_AMD64 1
643 #else
644 #define TARGET_X86 1
645 #endif
646
647 /* pthread_t is a pointer */
648 /* #undef PTHREAD_POINTER_ID */
649
650 /* The size of `size_t', as computed by sizeof. */
651 /* #undef SIZEOF_SIZE_T */
652
653 /* The size of a `void *', as computed by sizeof. */
654 #ifdef _WIN64
655 #define SIZEOF_VOID_P 8
656 #else
657 #define SIZEOF_VOID_P 4
658 #endif
659
660 #define SIZEOF_REGISTER SIZEOF_VOID_P
661
662 /* Define to 1 if you have the ANSI C header files. */
663 #define STDC_HEADERS 1
664
665 /* Use included libgc */
666 /* #define USE_INCLUDED_LIBGC 1 */
667
668 #define DEFAULT_GC_NAME "Included Boehm (with typed GC)"
669
670 /* ... */
671 /* #undef USE_MACH_SEMA */
672
673 /* Use mono_mutex_t */
674 /* #undef USE_MONO_MUTEX */
675
676 /* Version number of package */
677 #define VERSION "#MONO_VERSION#"
678
679 /* Version of the corlib-runtime interface */
680 #define MONO_CORLIB_VERSION #MONO_CORLIB_VERSION#
681
682 #endif