Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

688 lines
19 KiB

  1. #ifndef Py_CONFIG_H
  2. #define Py_CONFIG_H
  3. /* pyconfig.h. NOT Generated automatically by configure.
  4. This is a manually maintained version used for the Watcom,
  5. Borland and Microsoft Visual C++ compilers. It is a
  6. standard part of the Python distribution.
  7. WINDOWS DEFINES:
  8. The code specific to Windows should be wrapped around one of
  9. the following #defines
  10. MS_WIN64 - Code specific to the MS Win64 API
  11. MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs)
  12. MS_WINDOWS - Code specific to Windows, but all versions.
  13. MS_WINCE - Code specific to Windows CE
  14. Py_ENABLE_SHARED - Code if the Python core is built as a DLL.
  15. Also note that neither "_M_IX86" or "_MSC_VER" should be used for
  16. any purpose other than "Windows Intel x86 specific" and "Microsoft
  17. compiler specific". Therefore, these should be very rare.
  18. NOTE: The following symbols are deprecated:
  19. NT, WIN32, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT
  20. MS_CORE_DLL.
  21. */
  22. #ifdef _WIN32_WCE
  23. #define MS_WINCE
  24. #endif
  25. /* Visual Studio 2005 introduces deprecation warnings for
  26. "insecure" and POSIX functions. The insecure functions should
  27. be replaced by *_s versions (according to Microsoft); the
  28. POSIX functions by _* versions (which, according to Microsoft,
  29. would be ISO C conforming). Neither renaming is feasible, so
  30. we just silence the warnings. */
  31. #ifndef _CRT_SECURE_NO_DEPRECATE
  32. #define _CRT_SECURE_NO_DEPRECATE 1
  33. #endif
  34. #ifndef _CRT_NONSTDC_NO_DEPRECATE
  35. #define _CRT_NONSTDC_NO_DEPRECATE 1
  36. #endif
  37. /* Windows CE does not have these */
  38. #ifndef MS_WINCE
  39. #define HAVE_IO_H
  40. #define HAVE_SYS_UTIME_H
  41. #define HAVE_TEMPNAM
  42. #define HAVE_TMPFILE
  43. #define HAVE_TMPNAM
  44. #define HAVE_CLOCK
  45. #define HAVE_STRERROR
  46. #endif
  47. #ifdef HAVE_IO_H
  48. #include <io.h>
  49. #endif
  50. #define HAVE_HYPOT
  51. #define HAVE_STRFTIME
  52. #define DONT_HAVE_SIG_ALARM
  53. #define DONT_HAVE_SIG_PAUSE
  54. #define LONG_BIT 32
  55. #define WORD_BIT 32
  56. #define PREFIX ""
  57. #define EXEC_PREFIX ""
  58. #define MS_WIN32 /* only support win32 and greater. */
  59. #define MS_WINDOWS
  60. #ifndef PYTHONPATH
  61. # define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
  62. #endif
  63. #define NT_THREADS
  64. #define WITH_THREAD
  65. #ifndef NETSCAPE_PI
  66. #define USE_SOCKET
  67. #endif
  68. #ifdef MS_WINCE
  69. /* Python uses GetVersion() to distinguish between
  70. * Windows NT and 9x/ME where OS Unicode support is concerned.
  71. * Windows CE supports Unicode in the same way as NT so we
  72. * define the missing GetVersion() accordingly.
  73. */
  74. #define GetVersion() (4)
  75. /* Windows CE does not support environment variables */
  76. #define getenv(v) (NULL)
  77. #define environ (NULL)
  78. #endif
  79. /* Compiler specific defines */
  80. /* ------------------------------------------------------------------------*/
  81. /* Microsoft C defines _MSC_VER */
  82. #ifdef _MSC_VER
  83. /* We want COMPILER to expand to a string containing _MSC_VER's *value*.
  84. * This is horridly tricky, because the stringization operator only works
  85. * on macro arguments, and doesn't evaluate macros passed *as* arguments.
  86. * Attempts simpler than the following appear doomed to produce "_MSC_VER"
  87. * literally in the string.
  88. */
  89. #define _Py_PASTE_VERSION(SUFFIX) \
  90. ("[MSC v." _Py_STRINGIZE(_MSC_VER) " " SUFFIX "]")
  91. /* e.g., this produces, after compile-time string catenation,
  92. * ("[MSC v.1200 32 bit (Intel)]")
  93. *
  94. * _Py_STRINGIZE(_MSC_VER) expands to
  95. * _Py_STRINGIZE1((_MSC_VER)) expands to
  96. * _Py_STRINGIZE2(_MSC_VER) but as this call is the result of token-pasting
  97. * it's scanned again for macros and so further expands to (under MSVC 6)
  98. * _Py_STRINGIZE2(1200) which then expands to
  99. * "1200"
  100. */
  101. #define _Py_STRINGIZE(X) _Py_STRINGIZE1((X))
  102. #define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X
  103. #define _Py_STRINGIZE2(X) #X
  104. /* MSVC defines _WINxx to differentiate the windows platform types
  105. Note that for compatibility reasons _WIN32 is defined on Win32
  106. *and* on Win64. For the same reasons, in Python, MS_WIN32 is
  107. defined on Win32 *and* Win64. Win32 only code must therefore be
  108. guarded as follows:
  109. #if defined(MS_WIN32) && !defined(MS_WIN64)
  110. */
  111. #ifdef _WIN64
  112. #define MS_WIN64
  113. #endif
  114. /* set the COMPILER */
  115. #ifdef MS_WIN64
  116. #ifdef _M_IX86
  117. #define COMPILER _Py_PASTE_VERSION("64 bit (Intel)")
  118. #elif defined(_M_IA64)
  119. #define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
  120. #elif defined(_M_AMD64)
  121. #define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
  122. #else
  123. #define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)")
  124. #endif
  125. #endif /* MS_WIN64 */
  126. /* _W64 is not defined for VC6 or eVC4 */
  127. #ifndef _W64
  128. #define _W64
  129. #endif
  130. /* Define like size_t, omitting the "unsigned" */
  131. #ifdef MS_WIN64
  132. typedef __int64 ssize_t;
  133. #else
  134. typedef _W64 int ssize_t;
  135. #endif
  136. #define HAVE_SSIZE_T 1
  137. #if defined(MS_WIN32) && !defined(MS_WIN64)
  138. #ifdef _M_IX86
  139. #define COMPILER _Py_PASTE_VERSION("32 bit (Intel)")
  140. #else
  141. #define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)")
  142. #endif
  143. #endif /* MS_WIN32 && !MS_WIN64 */
  144. typedef int pid_t;
  145. #define hypot _hypot
  146. #include <float.h>
  147. #define Py_IS_NAN _isnan
  148. #define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
  149. #define Py_IS_FINITE(X) _finite(X)
  150. /* Turn off warnings about deprecated C runtime functions in
  151. VisualStudio .NET 2005 */
  152. #if _MSC_VER >= 1400 && !defined _CRT_SECURE_NO_DEPRECATE
  153. #define _CRT_SECURE_NO_DEPRECATE
  154. #endif
  155. #endif /* _MSC_VER */
  156. /* define some ANSI types that are not defined in earlier Win headers */
  157. #if defined(_MSC_VER) && _MSC_VER >= 1200
  158. /* This file only exists in VC 6.0 or higher */
  159. #include <basetsd.h>
  160. #endif
  161. /* ------------------------------------------------------------------------*/
  162. /* The Borland compiler defines __BORLANDC__ */
  163. /* XXX These defines are likely incomplete, but should be easy to fix. */
  164. #ifdef __BORLANDC__
  165. #define COMPILER "[Borland]"
  166. #ifdef _WIN32
  167. /* tested with BCC 5.5 (__BORLANDC__ >= 0x0550)
  168. */
  169. typedef int pid_t;
  170. /* BCC55 seems to understand __declspec(dllimport), it is used in its
  171. own header files (winnt.h, ...) - so we can do nothing and get the default*/
  172. #undef HAVE_SYS_UTIME_H
  173. #define HAVE_UTIME_H
  174. #define HAVE_DIRENT_H
  175. /* rename a few functions for the Borland compiler */
  176. #include <io.h>
  177. #define _chsize chsize
  178. #define _setmode setmode
  179. #else /* !_WIN32 */
  180. #error "Only Win32 and later are supported"
  181. #endif /* !_WIN32 */
  182. #endif /* BORLANDC */
  183. /* ------------------------------------------------------------------------*/
  184. /* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
  185. #if defined(__GNUC__) && defined(_WIN32)
  186. /* XXX These defines are likely incomplete, but should be easy to fix.
  187. They should be complete enough to build extension modules. */
  188. /* Suggested by Rene Liebscher <[email protected]> to avoid a GCC 2.91.*
  189. bug that requires structure imports. More recent versions of the
  190. compiler don't exhibit this bug.
  191. */
  192. #if (__GNUC__==2) && (__GNUC_MINOR__<=91)
  193. #warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
  194. #endif
  195. #define COMPILER "[gcc]"
  196. #define hypot _hypot
  197. #define PY_LONG_LONG long long
  198. #endif /* GNUC */
  199. /* ------------------------------------------------------------------------*/
  200. /* lcc-win32 defines __LCC__ */
  201. #if defined(__LCC__)
  202. /* XXX These defines are likely incomplete, but should be easy to fix.
  203. They should be complete enough to build extension modules. */
  204. #define COMPILER "[lcc-win32]"
  205. typedef int pid_t;
  206. /* __declspec() is supported here too - do nothing to get the defaults */
  207. #endif /* LCC */
  208. /* ------------------------------------------------------------------------*/
  209. /* End of compilers - finish up */
  210. #ifndef NO_STDIO_H
  211. # include <stdio.h>
  212. #endif
  213. /* 64 bit ints are usually spelt __int64 unless compiler has overridden */
  214. #define HAVE_LONG_LONG 1
  215. #ifndef PY_LONG_LONG
  216. # define PY_LONG_LONG __int64
  217. #endif
  218. /* For Windows the Python core is in a DLL by default. Test
  219. Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
  220. #if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED)
  221. # define Py_ENABLE_SHARED 1 /* standard symbol for shared library */
  222. # define MS_COREDLL /* deprecated old symbol */
  223. #endif /* !MS_NO_COREDLL && ... */
  224. /* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */
  225. #ifdef USE_DL_EXPORT
  226. # define Py_BUILD_CORE
  227. #endif /* USE_DL_EXPORT */
  228. /* All windows compilers that use this header support __declspec */
  229. #define HAVE_DECLSPEC_DLL
  230. /* For an MSVC DLL, we can nominate the .lib files used by extensions */
  231. #ifdef MS_COREDLL
  232. # ifndef Py_BUILD_CORE /* not building the core - must be an ext */
  233. # if defined(_MSC_VER)
  234. /* So MSVC users need not specify the .lib file in
  235. their Makefile (other compilers are generally
  236. taken care of by distutils.) */
  237. # ifdef _DEBUG
  238. # pragma comment(lib,"python25_d.lib")
  239. # else
  240. # pragma comment(lib,"python25.lib")
  241. # endif /* _DEBUG */
  242. # endif /* _MSC_VER */
  243. # endif /* Py_BUILD_CORE */
  244. #endif /* MS_COREDLL */
  245. #if defined(MS_WIN64)
  246. /* maintain "win32" sys.platform for backward compatibility of Python code,
  247. the Win64 API should be close enough to the Win32 API to make this
  248. preferable */
  249. # define PLATFORM "win32"
  250. # define SIZEOF_VOID_P 8
  251. # define SIZEOF_TIME_T 8
  252. # define SIZEOF_OFF_T 4
  253. # define SIZEOF_FPOS_T 8
  254. # define SIZEOF_HKEY 8
  255. # define SIZEOF_SIZE_T 8
  256. /* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
  257. sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t).
  258. On Win64 the second condition is not true, but if fpos_t replaces off_t
  259. then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
  260. should define this. */
  261. # define HAVE_LARGEFILE_SUPPORT
  262. #elif defined(MS_WIN32)
  263. # define PLATFORM "win32"
  264. # define HAVE_LARGEFILE_SUPPORT
  265. # define SIZEOF_VOID_P 4
  266. # define SIZEOF_OFF_T 4
  267. # define SIZEOF_FPOS_T 8
  268. # define SIZEOF_HKEY 4
  269. # define SIZEOF_SIZE_T 4
  270. /* MS VS2005 changes time_t to an 64-bit type on all platforms */
  271. # if defined(_MSC_VER) && _MSC_VER >= 1400
  272. # define SIZEOF_TIME_T 8
  273. # else
  274. # define SIZEOF_TIME_T 4
  275. # endif
  276. #endif
  277. #ifdef _DEBUG
  278. # define Py_DEBUG
  279. #endif
  280. #ifdef MS_WIN32
  281. #define SIZEOF_SHORT 2
  282. #define SIZEOF_INT 4
  283. #define SIZEOF_LONG 4
  284. #define SIZEOF_LONG_LONG 8
  285. #define SIZEOF_DOUBLE 8
  286. #define SIZEOF_FLOAT 4
  287. /* VC 7.1 has them and VC 6.0 does not. VC 6.0 has a version number of 1200.
  288. Microsoft eMbedded Visual C++ 4.0 has a version number of 1201 and doesn't
  289. define these.
  290. If some compiler does not provide them, modify the #if appropriately. */
  291. #if defined(_MSC_VER)
  292. #if _MSC_VER > 1201
  293. #define HAVE_UINTPTR_T 1
  294. #define HAVE_INTPTR_T 1
  295. #else
  296. /* VC6 & eVC4 don't support the C99 LL suffix for 64-bit integer literals */
  297. #define Py_LL(x) x##I64
  298. #endif /* _MSC_VER > 1200 */
  299. #endif /* _MSC_VER */
  300. #endif
  301. /* Fairly standard from here! */
  302. /* Define if on AIX 3.
  303. System headers sometimes define this.
  304. We just want to avoid a redefinition error message. */
  305. #ifndef _ALL_SOURCE
  306. /* #undef _ALL_SOURCE */
  307. #endif
  308. /* Define to empty if the keyword does not work. */
  309. /* #define const */
  310. /* Define to 1 if you have the <conio.h> header file. */
  311. #ifndef MS_WINCE
  312. #define HAVE_CONIO_H 1
  313. #endif
  314. /* Define to 1 if you have the <direct.h> header file. */
  315. #ifndef MS_WINCE
  316. #define HAVE_DIRECT_H 1
  317. #endif
  318. /* Define if you have dirent.h. */
  319. /* #define DIRENT 1 */
  320. /* Define to the type of elements in the array set by `getgroups'.
  321. Usually this is either `int' or `gid_t'. */
  322. /* #undef GETGROUPS_T */
  323. /* Define to `int' if <sys/types.h> doesn't define. */
  324. /* #undef gid_t */
  325. /* Define if your struct tm has tm_zone. */
  326. /* #undef HAVE_TM_ZONE */
  327. /* Define if you don't have tm_zone but do have the external array
  328. tzname. */
  329. #define HAVE_TZNAME
  330. /* Define to `int' if <sys/types.h> doesn't define. */
  331. /* #undef mode_t */
  332. /* Define if you don't have dirent.h, but have ndir.h. */
  333. /* #undef NDIR */
  334. /* Define to `long' if <sys/types.h> doesn't define. */
  335. /* #undef off_t */
  336. /* Define to `int' if <sys/types.h> doesn't define. */
  337. /* #undef pid_t */
  338. /* Define if the system does not provide POSIX.1 features except
  339. with this defined. */
  340. /* #undef _POSIX_1_SOURCE */
  341. /* Define if you need to in order for stat and other things to work. */
  342. /* #undef _POSIX_SOURCE */
  343. /* Define as the return type of signal handlers (int or void). */
  344. #define RETSIGTYPE void
  345. /* Define to `unsigned' if <sys/types.h> doesn't define. */
  346. /* #undef size_t */
  347. /* Define to `int' if <sys/types.h> doesn't define. */
  348. #if _MSC_VER + 0 >= 1300
  349. /* VC.NET typedefs socklen_t in ws2tcpip.h. */
  350. #else
  351. #define socklen_t int
  352. #endif
  353. /* Define if you have the ANSI C header files. */
  354. #define STDC_HEADERS 1
  355. /* Define if you don't have dirent.h, but have sys/dir.h. */
  356. /* #undef SYSDIR */
  357. /* Define if you don't have dirent.h, but have sys/ndir.h. */
  358. /* #undef SYSNDIR */
  359. /* Define if you can safely include both <sys/time.h> and <time.h>. */
  360. /* #undef TIME_WITH_SYS_TIME */
  361. /* Define if your <sys/time.h> declares struct tm. */
  362. /* #define TM_IN_SYS_TIME 1 */
  363. /* Define to `int' if <sys/types.h> doesn't define. */
  364. /* #undef uid_t */
  365. /* Define if the closedir function returns void instead of int. */
  366. /* #undef VOID_CLOSEDIR */
  367. /* Define if getpgrp() must be called as getpgrp(0)
  368. and (consequently) setpgrp() as setpgrp(0, 0). */
  369. /* #undef GETPGRP_HAVE_ARGS */
  370. /* Define this if your time.h defines altzone */
  371. /* #define HAVE_ALTZONE */
  372. /* Define if you have the putenv function. */
  373. #ifndef MS_WINCE
  374. #define HAVE_PUTENV
  375. #endif
  376. /* Define if your compiler supports function prototypes */
  377. #define HAVE_PROTOTYPES
  378. /* Define if you can safely include both <sys/select.h> and <sys/time.h>
  379. (which you can't on SCO ODT 3.0). */
  380. /* #undef SYS_SELECT_WITH_SYS_TIME */
  381. /* Define if you want documentation strings in extension modules */
  382. #define WITH_DOC_STRINGS 1
  383. /* Define if you want to compile in rudimentary thread support */
  384. /* #undef WITH_THREAD */
  385. /* Define if you want to use the GNU readline library */
  386. /* #define WITH_READLINE 1 */
  387. /* Define if you want to have a Unicode type. */
  388. #define Py_USING_UNICODE
  389. /* Define as the integral type used for Unicode representation. */
  390. #define PY_UNICODE_TYPE unsigned short
  391. /* Define as the size of the unicode type. */
  392. #define Py_UNICODE_SIZE SIZEOF_SHORT
  393. /* Define if you have a useable wchar_t type defined in wchar.h; useable
  394. means wchar_t must be 16-bit unsigned type. (see
  395. Include/unicodeobject.h). */
  396. #if Py_UNICODE_SIZE == 2
  397. #define HAVE_USABLE_WCHAR_T
  398. /* Define to indicate that the Python Unicode representation can be passed
  399. as-is to Win32 Wide API. */
  400. #define Py_WIN_WIDE_FILENAMES
  401. #endif
  402. /* Use Python's own small-block memory-allocator. */
  403. #define WITH_PYMALLOC 1
  404. /* Define if you have clock. */
  405. /* #define HAVE_CLOCK */
  406. /* Define when any dynamic module loading is enabled */
  407. #define HAVE_DYNAMIC_LOADING
  408. /* Define if you have ftime. */
  409. #ifndef MS_WINCE
  410. #define HAVE_FTIME
  411. #endif
  412. /* Define if you have getpeername. */
  413. #define HAVE_GETPEERNAME
  414. /* Define if you have getpgrp. */
  415. /* #undef HAVE_GETPGRP */
  416. /* Define if you have getpid. */
  417. #ifndef MS_WINCE
  418. #define HAVE_GETPID
  419. #endif
  420. /* Define if you have gettimeofday. */
  421. /* #undef HAVE_GETTIMEOFDAY */
  422. /* Define if you have getwd. */
  423. /* #undef HAVE_GETWD */
  424. /* Define if you have lstat. */
  425. /* #undef HAVE_LSTAT */
  426. /* Define if you have the mktime function. */
  427. #define HAVE_MKTIME
  428. /* Define if you have nice. */
  429. /* #undef HAVE_NICE */
  430. /* Define if you have readlink. */
  431. /* #undef HAVE_READLINK */
  432. /* Define if you have select. */
  433. /* #undef HAVE_SELECT */
  434. /* Define if you have setpgid. */
  435. /* #undef HAVE_SETPGID */
  436. /* Define if you have setpgrp. */
  437. /* #undef HAVE_SETPGRP */
  438. /* Define if you have setsid. */
  439. /* #undef HAVE_SETSID */
  440. /* Define if you have setvbuf. */
  441. #define HAVE_SETVBUF
  442. /* Define if you have siginterrupt. */
  443. /* #undef HAVE_SIGINTERRUPT */
  444. /* Define if you have symlink. */
  445. /* #undef HAVE_SYMLINK */
  446. /* Define if you have tcgetpgrp. */
  447. /* #undef HAVE_TCGETPGRP */
  448. /* Define if you have tcsetpgrp. */
  449. /* #undef HAVE_TCSETPGRP */
  450. /* Define if you have times. */
  451. /* #undef HAVE_TIMES */
  452. /* Define if you have uname. */
  453. /* #undef HAVE_UNAME */
  454. /* Define if you have waitpid. */
  455. /* #undef HAVE_WAITPID */
  456. /* Define to 1 if you have the `wcscoll' function. */
  457. #ifndef MS_WINCE
  458. #define HAVE_WCSCOLL 1
  459. #endif
  460. /* Define if you have the <dlfcn.h> header file. */
  461. /* #undef HAVE_DLFCN_H */
  462. /* Define to 1 if you have the <errno.h> header file. */
  463. #ifndef MS_WINCE
  464. #define HAVE_ERRNO_H 1
  465. #endif
  466. /* Define if you have the <fcntl.h> header file. */
  467. #ifndef MS_WINCE
  468. #define HAVE_FCNTL_H 1
  469. #endif
  470. /* Define to 1 if you have the <process.h> header file. */
  471. #ifndef MS_WINCE
  472. #define HAVE_PROCESS_H 1
  473. #endif
  474. /* Define to 1 if you have the <signal.h> header file. */
  475. #ifndef MS_WINCE
  476. #define HAVE_SIGNAL_H 1
  477. #endif
  478. /* Define if you have the <stdarg.h> prototypes. */
  479. #define HAVE_STDARG_PROTOTYPES
  480. /* Define if you have the <stddef.h> header file. */
  481. #define HAVE_STDDEF_H 1
  482. /* Define if you have the <sys/audioio.h> header file. */
  483. /* #undef HAVE_SYS_AUDIOIO_H */
  484. /* Define if you have the <sys/param.h> header file. */
  485. /* #define HAVE_SYS_PARAM_H 1 */
  486. /* Define if you have the <sys/select.h> header file. */
  487. /* #define HAVE_SYS_SELECT_H 1 */
  488. /* Define to 1 if you have the <sys/stat.h> header file. */
  489. #ifndef MS_WINCE
  490. #define HAVE_SYS_STAT_H 1
  491. #endif
  492. /* Define if you have the <sys/time.h> header file. */
  493. /* #define HAVE_SYS_TIME_H 1 */
  494. /* Define if you have the <sys/times.h> header file. */
  495. /* #define HAVE_SYS_TIMES_H 1 */
  496. /* Define to 1 if you have the <sys/types.h> header file. */
  497. #ifndef MS_WINCE
  498. #define HAVE_SYS_TYPES_H 1
  499. #endif
  500. /* Define if you have the <sys/un.h> header file. */
  501. /* #define HAVE_SYS_UN_H 1 */
  502. /* Define if you have the <sys/utime.h> header file. */
  503. /* #define HAVE_SYS_UTIME_H 1 */
  504. /* Define if you have the <sys/utsname.h> header file. */
  505. /* #define HAVE_SYS_UTSNAME_H 1 */
  506. /* Define if you have the <thread.h> header file. */
  507. /* #undef HAVE_THREAD_H */
  508. /* Define if you have the <unistd.h> header file. */
  509. /* #define HAVE_UNISTD_H 1 */
  510. /* Define if you have the <utime.h> header file. */
  511. /* #define HAVE_UTIME_H 1 */
  512. /* Define if the compiler provides a wchar.h header file. */
  513. #define HAVE_WCHAR_H 1
  514. /* Define if you have the dl library (-ldl). */
  515. /* #undef HAVE_LIBDL */
  516. /* Define if you have the mpc library (-lmpc). */
  517. /* #undef HAVE_LIBMPC */
  518. /* Define if you have the nsl library (-lnsl). */
  519. #define HAVE_LIBNSL 1
  520. /* Define if you have the seq library (-lseq). */
  521. /* #undef HAVE_LIBSEQ */
  522. /* Define if you have the socket library (-lsocket). */
  523. #define HAVE_LIBSOCKET 1
  524. /* Define if you have the sun library (-lsun). */
  525. /* #undef HAVE_LIBSUN */
  526. /* Define if you have the termcap library (-ltermcap). */
  527. /* #undef HAVE_LIBTERMCAP */
  528. /* Define if you have the termlib library (-ltermlib). */
  529. /* #undef HAVE_LIBTERMLIB */
  530. /* Define if you have the thread library (-lthread). */
  531. /* #undef HAVE_LIBTHREAD */
  532. /* WinSock does not use a bitmask in select, and uses
  533. socket handles greater than FD_SETSIZE */
  534. #define Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE
  535. #endif /* !Py_CONFIG_H */