winconfig.h 18 KB

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