Advertisement
Guest User

pyconfig.h 2.7.3 windows

a guest
Jun 7th, 2017
922
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 21.13 KB | None | 0 0
  1. #ifndef Py_CONFIG_H
  2. #define Py_CONFIG_H
  3.  
  4. /* pyconfig.h.  NOT Generated automatically by configure.
  5.  
  6. This is a manually maintained version used for the Watcom,
  7. Borland and Microsoft Visual C++ compilers.  It is a
  8. standard part of the Python distribution.
  9.  
  10. WINDOWS DEFINES:
  11. The code specific to Windows should be wrapped around one of
  12. the following #defines
  13.  
  14. MS_WIN64 - Code specific to the MS Win64 API
  15. MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs)
  16. MS_WINDOWS - Code specific to Windows, but all versions.
  17. MS_WINCE - Code specific to Windows CE
  18. Py_ENABLE_SHARED - Code if the Python core is built as a DLL.
  19.  
  20. Also note that neither "_M_IX86" or "_MSC_VER" should be used for
  21. any purpose other than "Windows Intel x86 specific" and "Microsoft
  22. compiler specific".  Therefore, these should be very rare.
  23.  
  24.  
  25. NOTE: The following symbols are deprecated:
  26. NT, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT
  27. MS_CORE_DLL.
  28.  
  29. WIN32 is still required for the locale module.
  30.  
  31. */
  32.  
  33. #ifdef _WIN32_WCE
  34. #define MS_WINCE
  35. #endif
  36.  
  37. /* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */
  38. #ifdef USE_DL_EXPORT
  39. #   define Py_BUILD_CORE
  40. #endif /* USE_DL_EXPORT */
  41.  
  42. /* Visual Studio 2005 introduces deprecation warnings for
  43.    "insecure" and POSIX functions. The insecure functions should
  44.    be replaced by *_s versions (according to Microsoft); the
  45.    POSIX functions by _* versions (which, according to Microsoft,
  46.    would be ISO C conforming). Neither renaming is feasible, so
  47.    we just silence the warnings. */
  48.  
  49. #ifndef _CRT_SECURE_NO_DEPRECATE
  50. #define _CRT_SECURE_NO_DEPRECATE 1
  51. #endif
  52. #ifndef _CRT_NONSTDC_NO_DEPRECATE
  53. #define _CRT_NONSTDC_NO_DEPRECATE 1
  54. #endif
  55.  
  56. /* Windows CE does not have these */
  57. #ifndef MS_WINCE
  58. #define HAVE_IO_H
  59. #define HAVE_SYS_UTIME_H
  60. #define HAVE_TEMPNAM
  61. #define HAVE_TMPFILE
  62. #define HAVE_TMPNAM
  63. #define HAVE_CLOCK
  64. #define HAVE_STRERROR
  65. #endif
  66.  
  67. #ifdef HAVE_IO_H
  68. #include <io.h>
  69. #endif
  70.  
  71. #define HAVE_HYPOT
  72. #define HAVE_STRFTIME
  73. #define DONT_HAVE_SIG_ALARM
  74. #define DONT_HAVE_SIG_PAUSE
  75. #define LONG_BIT    32
  76. #define WORD_BIT 32
  77. #define PREFIX ""
  78. #define EXEC_PREFIX ""
  79.  
  80. #define MS_WIN32 /* only support win32 and greater. */
  81. #define MS_WINDOWS
  82. #ifndef PYTHONPATH
  83. #   define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
  84. #endif
  85. #define NT_THREADS
  86. #define WITH_THREAD
  87. #ifndef NETSCAPE_PI
  88. #define USE_SOCKET
  89. #endif
  90.  
  91. /* CE6 doesn't have strdup() but _strdup(). Assume the same for earlier versions. */
  92. #if defined(MS_WINCE)
  93. #  include <stdlib.h>
  94. #  define strdup _strdup
  95. #endif
  96.  
  97. #ifdef MS_WINCE
  98. /* Windows CE does not support environment variables */
  99. #define getenv(v) (NULL)
  100. #define environ (NULL)
  101. #endif
  102.  
  103. /* Compiler specific defines */
  104.  
  105. /* ------------------------------------------------------------------------*/
  106. /* Microsoft C defines _MSC_VER */
  107. #ifdef _MSC_VER
  108.  
  109. /* We want COMPILER to expand to a string containing _MSC_VER's *value*.
  110.  * This is horridly tricky, because the stringization operator only works
  111.  * on macro arguments, and doesn't evaluate macros passed *as* arguments.
  112.  * Attempts simpler than the following appear doomed to produce "_MSC_VER"
  113.  * literally in the string.
  114.  */
  115. #define _Py_PASTE_VERSION(SUFFIX) \
  116.     ("[MSC v." _Py_STRINGIZE(_MSC_VER) " " SUFFIX "]")
  117. /* e.g., this produces, after compile-time string catenation,
  118.  *  ("[MSC v.1200 32 bit (Intel)]")
  119.  *
  120.  * _Py_STRINGIZE(_MSC_VER) expands to
  121.  * _Py_STRINGIZE1((_MSC_VER)) expands to
  122.  * _Py_STRINGIZE2(_MSC_VER) but as this call is the result of token-pasting
  123.  *      it's scanned again for macros and so further expands to (under MSVC 6)
  124.  * _Py_STRINGIZE2(1200) which then expands to
  125.  * "1200"
  126.  */
  127. #define _Py_STRINGIZE(X) _Py_STRINGIZE1((X))
  128. #define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X
  129. #define _Py_STRINGIZE2(X) #X
  130.  
  131. /* MSVC defines _WINxx to differentiate the windows platform types
  132.  
  133.    Note that for compatibility reasons _WIN32 is defined on Win32
  134.    *and* on Win64. For the same reasons, in Python, MS_WIN32 is
  135.    defined on Win32 *and* Win64. Win32 only code must therefore be
  136.    guarded as follows:
  137.     #if defined(MS_WIN32) && !defined(MS_WIN64)
  138.    Some modules are disabled on Itanium processors, therefore we
  139.    have MS_WINI64 set for those targets, otherwise MS_WINX64
  140. */
  141. #ifdef _WIN64
  142. #define MS_WIN64
  143. #endif
  144.  
  145. /* set the COMPILER */
  146. #ifdef MS_WIN64
  147. #if defined(_M_IA64)
  148. #define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
  149. #define MS_WINI64
  150. #elif defined(_M_X64) || defined(_M_AMD64)
  151. #define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
  152. #define MS_WINX64
  153. #else
  154. #define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)")
  155. #endif
  156. #endif /* MS_WIN64 */
  157.  
  158. /* set the version macros for the windows headers */
  159. #ifdef MS_WINX64
  160. /* 64 bit only runs on XP or greater */
  161. #define Py_WINVER _WIN32_WINNT_WINXP
  162. #define Py_NTDDI NTDDI_WINXP
  163. #else
  164. /* Python 2.6+ requires Windows 2000 or greater */
  165. #ifdef _WIN32_WINNT_WIN2K
  166. #define Py_WINVER _WIN32_WINNT_WIN2K
  167. #else
  168. #define Py_WINVER 0x0500
  169. #endif
  170. #define Py_NTDDI NTDDI_WIN2KSP4
  171. #endif
  172.  
  173. /* We only set these values when building Python - we don't want to force
  174.    these values on extensions, as that will affect the prototypes and
  175.    structures exposed in the Windows headers. Even when building Python, we
  176.    allow a single source file to override this - they may need access to
  177.    structures etc so it can optionally use new Windows features if it
  178.    determines at runtime they are available.
  179. */
  180. #if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_MODULE)
  181. #ifndef NTDDI_VERSION
  182. #define NTDDI_VERSION Py_NTDDI
  183. #endif
  184. #ifndef WINVER
  185. #define WINVER Py_WINVER
  186. #endif
  187. #ifndef _WIN32_WINNT
  188. #define _WIN32_WINNT Py_WINVER
  189. #endif
  190. #endif
  191.  
  192. /* _W64 is not defined for VC6 or eVC4 */
  193. #ifndef _W64
  194. #define _W64
  195. #endif
  196.  
  197. /* Define like size_t, omitting the "unsigned" */
  198. #ifdef MS_WIN64
  199. typedef __int64 ssize_t;
  200. #else
  201. typedef _W64 int ssize_t;
  202. #endif
  203. #define HAVE_SSIZE_T 1
  204.  
  205. #if defined(MS_WIN32) && !defined(MS_WIN64)
  206. #ifdef _M_IX86
  207. #define COMPILER _Py_PASTE_VERSION("32 bit (Intel)")
  208. #else
  209. #define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)")
  210. #endif
  211. #endif /* MS_WIN32 && !MS_WIN64 */
  212.  
  213. typedef int pid_t;
  214.  
  215. #include <float.h>
  216. #define Py_IS_NAN _isnan
  217. #define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
  218. #define Py_IS_FINITE(X) _finite(X)
  219. #define copysign _copysign
  220. #define hypot _hypot
  221.  
  222. #ifdef _DEBUG
  223. #define _CRTDBG_MAP_ALLOC
  224. #include <crtdbg.h>
  225. #endif
  226.  
  227. #endif /* _MSC_VER */
  228.  
  229. /* define some ANSI types that are not defined in earlier Win headers */
  230. #if defined(_MSC_VER) && _MSC_VER >= 1200
  231. /* This file only exists in VC 6.0 or higher */
  232. #include <basetsd.h>
  233. #endif
  234.  
  235. /* ------------------------------------------------------------------------*/
  236. /* The Borland compiler defines __BORLANDC__ */
  237. /* XXX These defines are likely incomplete, but should be easy to fix. */
  238. #ifdef __BORLANDC__
  239. #define COMPILER "[Borland]"
  240.  
  241. #ifdef _WIN32
  242. /* tested with BCC 5.5 (__BORLANDC__ >= 0x0550)
  243.  */
  244.  
  245. typedef int pid_t;
  246. /* BCC55 seems to understand __declspec(dllimport), it is used in its
  247.    own header files (winnt.h, ...) - so we can do nothing and get the default*/
  248.  
  249. #undef HAVE_SYS_UTIME_H
  250. #define HAVE_UTIME_H
  251. #define HAVE_DIRENT_H
  252.  
  253. /* rename a few functions for the Borland compiler */
  254. #include <io.h>
  255. #define _chsize chsize
  256. #define _setmode setmode
  257.  
  258. #else /* !_WIN32 */
  259. #error "Only Win32 and later are supported"
  260. #endif /* !_WIN32 */
  261.  
  262. #endif /* BORLANDC */
  263.  
  264. /* ------------------------------------------------------------------------*/
  265. /* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
  266. #if defined(__GNUC__) && defined(_WIN32)
  267. /* XXX These defines are likely incomplete, but should be easy to fix.
  268.    They should be complete enough to build extension modules. */
  269. /* Suggested by Rene Liebscher <[email protected]> to avoid a GCC 2.91.*
  270.    bug that requires structure imports.  More recent versions of the
  271.    compiler don't exhibit this bug.
  272. */
  273. #if (__GNUC__==2) && (__GNUC_MINOR__<=91)
  274. #warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
  275. #endif
  276.  
  277. #define COMPILER "[gcc]"
  278. #define hypot _hypot
  279. #define PY_LONG_LONG long long
  280. #define PY_LLONG_MIN LLONG_MIN
  281. #define PY_LLONG_MAX LLONG_MAX
  282. #define PY_ULLONG_MAX ULLONG_MAX
  283. #endif /* GNUC */
  284.  
  285. /* ------------------------------------------------------------------------*/
  286. /* lcc-win32 defines __LCC__ */
  287. #if defined(__LCC__)
  288. /* XXX These defines are likely incomplete, but should be easy to fix.
  289.    They should be complete enough to build extension modules. */
  290.  
  291. #define COMPILER "[lcc-win32]"
  292. typedef int pid_t;
  293. /* __declspec() is supported here too - do nothing to get the defaults */
  294.  
  295. #endif /* LCC */
  296.  
  297. /* ------------------------------------------------------------------------*/
  298. /* End of compilers - finish up */
  299.  
  300. #ifndef NO_STDIO_H
  301. #   include <stdio.h>
  302. #endif
  303.  
  304. /* 64 bit ints are usually spelt __int64 unless compiler has overridden */
  305. #define HAVE_LONG_LONG 1
  306. #ifndef PY_LONG_LONG
  307. #   define PY_LONG_LONG __int64
  308. #   define PY_LLONG_MAX _I64_MAX
  309. #   define PY_LLONG_MIN _I64_MIN
  310. #   define PY_ULLONG_MAX _UI64_MAX
  311. #endif
  312.  
  313. /* For Windows the Python core is in a DLL by default.  Test
  314. Py_NO_ENABLE_SHARED to find out.  Also support MS_NO_COREDLL for b/w compat */
  315. #define Py_NO_ENABLE_SHARED
  316. #if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED)
  317. #   define Py_ENABLE_SHARED 1 /* standard symbol for shared library */
  318. #   define MS_COREDLL   /* deprecated old symbol */
  319. #endif /* !MS_NO_COREDLL && ... */
  320.  
  321. /*  All windows compilers that use this header support __declspec */
  322. #define HAVE_DECLSPEC_DLL
  323.  
  324. /* For an MSVC DLL, we can nominate the .lib files used by extensions */
  325. #ifdef MS_COREDLL
  326. #   ifndef Py_BUILD_CORE /* not building the core - must be an ext */
  327. #       if defined(_MSC_VER)
  328.             /* So MSVC users need not specify the .lib file in
  329.             their Makefile (other compilers are generally
  330.             taken care of by distutils.) */
  331. #           ifdef _DEBUG
  332. #               pragma comment(lib,"python27_d.lib")
  333. #           else
  334. #               pragma comment(lib,"python27.lib")
  335. #           endif /* _DEBUG */
  336. #       endif /* _MSC_VER */
  337. #   endif /* Py_BUILD_CORE */
  338. #endif /* MS_COREDLL */
  339.  
  340. #if defined(MS_WIN64)
  341. /* maintain "win32" sys.platform for backward compatibility of Python code,
  342.    the Win64 API should be close enough to the Win32 API to make this
  343.    preferable */
  344. #   define PLATFORM "win32"
  345. #   define SIZEOF_VOID_P 8
  346. #   define SIZEOF_TIME_T 8
  347. #   define SIZEOF_OFF_T 4
  348. #   define SIZEOF_FPOS_T 8
  349. #   define SIZEOF_HKEY 8
  350. #   define SIZEOF_SIZE_T 8
  351. /* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
  352.    sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t).
  353.    On Win64 the second condition is not true, but if fpos_t replaces off_t
  354.    then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
  355.    should define this. */
  356. #   define HAVE_LARGEFILE_SUPPORT
  357. #elif defined(MS_WIN32)
  358. #   define PLATFORM "win32"
  359. #   define HAVE_LARGEFILE_SUPPORT
  360. #   define SIZEOF_VOID_P 4
  361. #   define SIZEOF_OFF_T 4
  362. #   define SIZEOF_FPOS_T 8
  363. #   define SIZEOF_HKEY 4
  364. #   define SIZEOF_SIZE_T 4
  365.     /* MS VS2005 changes time_t to an 64-bit type on all platforms */
  366. #   if defined(_MSC_VER) && _MSC_VER >= 1400
  367. #   define SIZEOF_TIME_T 8
  368. #   else
  369. #   define SIZEOF_TIME_T 4
  370. #   endif
  371. #endif
  372.  
  373. #ifdef _DEBUG
  374. #   define Py_DEBUG
  375. #endif
  376.  
  377.  
  378. #ifdef MS_WIN32
  379.  
  380. #define SIZEOF_SHORT 2
  381. #define SIZEOF_INT 4
  382. #define SIZEOF_LONG 4
  383. #define SIZEOF_LONG_LONG 8
  384. #define SIZEOF_DOUBLE 8
  385. #define SIZEOF_FLOAT 4
  386.  
  387. /* VC 7.1 has them and VC 6.0 does not.  VC 6.0 has a version number of 1200.
  388.    Microsoft eMbedded Visual C++ 4.0 has a version number of 1201 and doesn't
  389.    define these.
  390.    If some compiler does not provide them, modify the #if appropriately. */
  391. #if defined(_MSC_VER)
  392. #if _MSC_VER > 1300
  393. #define HAVE_UINTPTR_T 1
  394. #define HAVE_INTPTR_T 1
  395. #else
  396. /* VC6, VS 2002 and eVC4 don't support the C99 LL suffix for 64-bit integer literals */
  397. #define Py_LL(x) x##I64
  398. #endif  /* _MSC_VER > 1200  */
  399. #endif  /* _MSC_VER */
  400.  
  401. #endif
  402.  
  403. /* define signed and unsigned exact-width 32-bit and 64-bit types, used in the
  404.    implementation of Python long integers. */
  405. #ifndef PY_UINT32_T
  406. #if SIZEOF_INT == 4
  407. #define HAVE_UINT32_T 1
  408. #define PY_UINT32_T unsigned int
  409. #elif SIZEOF_LONG == 4
  410. #define HAVE_UINT32_T 1
  411. #define PY_UINT32_T unsigned long
  412. #endif
  413. #endif
  414.  
  415. #ifndef PY_UINT64_T
  416. #if SIZEOF_LONG_LONG == 8
  417. #define HAVE_UINT64_T 1
  418. #define PY_UINT64_T unsigned PY_LONG_LONG
  419. #endif
  420. #endif
  421.  
  422. #ifndef PY_INT32_T
  423. #if SIZEOF_INT == 4
  424. #define HAVE_INT32_T 1
  425. #define PY_INT32_T int
  426. #elif SIZEOF_LONG == 4
  427. #define HAVE_INT32_T 1
  428. #define PY_INT32_T long
  429. #endif
  430. #endif
  431.  
  432. #ifndef PY_INT64_T
  433. #if SIZEOF_LONG_LONG == 8
  434. #define HAVE_INT64_T 1
  435. #define PY_INT64_T PY_LONG_LONG
  436. #endif
  437. #endif
  438.  
  439. /* Fairly standard from here! */
  440.  
  441. /* Define to 1 if you have the `copysign' function. */
  442. #define HAVE_COPYSIGN 1
  443.  
  444. /* Define to 1 if you have the `isinf' macro. */
  445. #define HAVE_DECL_ISINF 1
  446.  
  447. /* Define to 1 if you have the `isnan' function. */
  448. #define HAVE_DECL_ISNAN 1
  449.  
  450. /* Define if on AIX 3.
  451.    System headers sometimes define this.
  452.    We just want to avoid a redefinition error message.  */
  453. #ifndef _ALL_SOURCE
  454. /* #undef _ALL_SOURCE */
  455. #endif
  456.  
  457. /* Define to empty if the keyword does not work.  */
  458. /* #define const  */
  459.  
  460. /* Define to 1 if you have the <conio.h> header file. */
  461. #ifndef MS_WINCE
  462. #define HAVE_CONIO_H 1
  463. #endif
  464.  
  465. /* Define to 1 if you have the <direct.h> header file. */
  466. #ifndef MS_WINCE
  467. #define HAVE_DIRECT_H 1
  468. #endif
  469.  
  470. /* Define if you have dirent.h.  */
  471. /* #define DIRENT 1 */
  472.  
  473. /* Define to the type of elements in the array set by `getgroups'.
  474.    Usually this is either `int' or `gid_t'.  */
  475. /* #undef GETGROUPS_T */
  476.  
  477. /* Define to `int' if <sys/types.h> doesn't define.  */
  478. /* #undef gid_t */
  479.  
  480. /* Define if your struct tm has tm_zone.  */
  481. /* #undef HAVE_TM_ZONE */
  482.  
  483. /* Define if you don't have tm_zone but do have the external array
  484.    tzname.  */
  485. #define HAVE_TZNAME
  486.  
  487. /* Define to `int' if <sys/types.h> doesn't define.  */
  488. /* #undef mode_t */
  489.  
  490. /* Define if you don't have dirent.h, but have ndir.h.  */
  491. /* #undef NDIR */
  492.  
  493. /* Define to `long' if <sys/types.h> doesn't define.  */
  494. /* #undef off_t */
  495.  
  496. /* Define to `int' if <sys/types.h> doesn't define.  */
  497. /* #undef pid_t */
  498.  
  499. /* Define if the system does not provide POSIX.1 features except
  500.    with this defined.  */
  501. /* #undef _POSIX_1_SOURCE */
  502.  
  503. /* Define if you need to in order for stat and other things to work.  */
  504. /* #undef _POSIX_SOURCE */
  505.  
  506. /* Define as the return type of signal handlers (int or void).  */
  507. #define RETSIGTYPE void
  508.  
  509. /* Define to `unsigned' if <sys/types.h> doesn't define.  */
  510. /* #undef size_t */
  511.  
  512. /* Define if you have the ANSI C header files.  */
  513. #define STDC_HEADERS 1
  514.  
  515. /* Define if you don't have dirent.h, but have sys/dir.h.  */
  516. /* #undef SYSDIR */
  517.  
  518. /* Define if you don't have dirent.h, but have sys/ndir.h.  */
  519. /* #undef SYSNDIR */
  520.  
  521. /* Define if you can safely include both <sys/time.h> and <time.h>.  */
  522. /* #undef TIME_WITH_SYS_TIME */
  523.  
  524. /* Define if your <sys/time.h> declares struct tm.  */
  525. /* #define TM_IN_SYS_TIME 1 */
  526.  
  527. /* Define to `int' if <sys/types.h> doesn't define.  */
  528. /* #undef uid_t */
  529.  
  530. /* Define if the closedir function returns void instead of int.  */
  531. /* #undef VOID_CLOSEDIR */
  532.  
  533. /* Define if getpgrp() must be called as getpgrp(0)
  534.    and (consequently) setpgrp() as setpgrp(0, 0). */
  535. /* #undef GETPGRP_HAVE_ARGS */
  536.  
  537. /* Define this if your time.h defines altzone */
  538. /* #define HAVE_ALTZONE */
  539.  
  540. /* Define if you have the putenv function.  */
  541. #ifndef MS_WINCE
  542. #define HAVE_PUTENV
  543. #endif
  544.  
  545. /* Define if your compiler supports function prototypes */
  546. #define HAVE_PROTOTYPES
  547.  
  548. /* Define if  you can safely include both <sys/select.h> and <sys/time.h>
  549.    (which you can't on SCO ODT 3.0). */
  550. /* #undef SYS_SELECT_WITH_SYS_TIME */
  551.  
  552. /* Define if you want documentation strings in extension modules */
  553. #define WITH_DOC_STRINGS 1
  554.  
  555. /* Define if you want to compile in rudimentary thread support */
  556. /* #undef WITH_THREAD */
  557.  
  558. /* Define if you want to use the GNU readline library */
  559. /* #define WITH_READLINE 1 */
  560.  
  561. /* Define if you want to have a Unicode type. */
  562. #define Py_USING_UNICODE
  563.  
  564. /* Define as the size of the unicode type. */
  565. /* This is enough for unicodeobject.h to do the "right thing" on Windows. */
  566. #define Py_UNICODE_SIZE 2
  567.  
  568. /* Use Python's own small-block memory-allocator. */
  569. #define WITH_PYMALLOC 1
  570.  
  571. /* Define if you have clock.  */
  572. /* #define HAVE_CLOCK */
  573.  
  574. /* Define when any dynamic module loading is enabled */
  575. //#define HAVE_DYNAMIC_LOADING
  576.  
  577. /* Define if you have ftime.  */
  578. #ifndef MS_WINCE
  579. #define HAVE_FTIME
  580. #endif
  581.  
  582. /* Define if you have getpeername.  */
  583. #define HAVE_GETPEERNAME
  584.  
  585. /* Define if you have getpgrp.  */
  586. /* #undef HAVE_GETPGRP */
  587.  
  588. /* Define if you have getpid.  */
  589. #ifndef MS_WINCE
  590. #define HAVE_GETPID
  591. #endif
  592.  
  593. /* Define if you have gettimeofday.  */
  594. /* #undef HAVE_GETTIMEOFDAY */
  595.  
  596. /* Define if you have getwd.  */
  597. /* #undef HAVE_GETWD */
  598.  
  599. /* Define if you have lstat.  */
  600. /* #undef HAVE_LSTAT */
  601.  
  602. /* Define if you have the mktime function.  */
  603. #define HAVE_MKTIME
  604.  
  605. /* Define if you have nice.  */
  606. /* #undef HAVE_NICE */
  607.  
  608. /* Define if you have readlink.  */
  609. /* #undef HAVE_READLINK */
  610.  
  611. /* Define if you have select.  */
  612. /* #undef HAVE_SELECT */
  613.  
  614. /* Define if you have setpgid.  */
  615. /* #undef HAVE_SETPGID */
  616.  
  617. /* Define if you have setpgrp.  */
  618. /* #undef HAVE_SETPGRP */
  619.  
  620. /* Define if you have setsid.  */
  621. /* #undef HAVE_SETSID */
  622.  
  623. /* Define if you have setvbuf.  */
  624. #define HAVE_SETVBUF
  625.  
  626. /* Define if you have siginterrupt.  */
  627. /* #undef HAVE_SIGINTERRUPT */
  628.  
  629. /* Define if you have symlink.  */
  630. /* #undef HAVE_SYMLINK */
  631.  
  632. /* Define if you have tcgetpgrp.  */
  633. /* #undef HAVE_TCGETPGRP */
  634.  
  635. /* Define if you have tcsetpgrp.  */
  636. /* #undef HAVE_TCSETPGRP */
  637.  
  638. /* Define if you have times.  */
  639. /* #undef HAVE_TIMES */
  640.  
  641. /* Define if you have uname.  */
  642. /* #undef HAVE_UNAME */
  643.  
  644. /* Define if you have waitpid.  */
  645. /* #undef HAVE_WAITPID */
  646.  
  647. /* Define to 1 if you have the `wcscoll' function. */
  648. #ifndef MS_WINCE
  649. #define HAVE_WCSCOLL 1
  650. #endif
  651.  
  652. /* Define if the zlib library has inflateCopy */
  653. #define HAVE_ZLIB_COPY 1
  654.  
  655. /* Define if you have the <dlfcn.h> header file.  */
  656. /* #undef HAVE_DLFCN_H */
  657.  
  658. /* Define to 1 if you have the <errno.h> header file. */
  659. #ifndef MS_WINCE
  660. #define HAVE_ERRNO_H 1
  661. #endif
  662.  
  663. /* Define if you have the <fcntl.h> header file.  */
  664. #ifndef MS_WINCE
  665. #define HAVE_FCNTL_H 1
  666. #endif
  667.  
  668. /* Define to 1 if you have the <process.h> header file. */
  669. #ifndef MS_WINCE
  670. #define HAVE_PROCESS_H 1
  671. #endif
  672.  
  673. /* Define to 1 if you have the <signal.h> header file. */
  674. #ifndef MS_WINCE
  675. #define HAVE_SIGNAL_H 1
  676. #endif
  677.  
  678. /* Define if you have the <stdarg.h> prototypes.  */
  679. #define HAVE_STDARG_PROTOTYPES
  680.  
  681. /* Define if you have the <stddef.h> header file.  */
  682. #define HAVE_STDDEF_H 1
  683.  
  684. /* Define if you have the <sys/audioio.h> header file.  */
  685. /* #undef HAVE_SYS_AUDIOIO_H */
  686.  
  687. /* Define if you have the <sys/param.h> header file.  */
  688. /* #define HAVE_SYS_PARAM_H 1 */
  689.  
  690. /* Define if you have the <sys/select.h> header file.  */
  691. /* #define HAVE_SYS_SELECT_H 1 */
  692.  
  693. /* Define to 1 if you have the <sys/stat.h> header file.  */
  694. #ifndef MS_WINCE
  695. #define HAVE_SYS_STAT_H 1
  696. #endif
  697.  
  698. /* Define if you have the <sys/time.h> header file.  */
  699. /* #define HAVE_SYS_TIME_H 1 */
  700.  
  701. /* Define if you have the <sys/times.h> header file.  */
  702. /* #define HAVE_SYS_TIMES_H 1 */
  703.  
  704. /* Define to 1 if you have the <sys/types.h> header file.  */
  705. #ifndef MS_WINCE
  706. #define HAVE_SYS_TYPES_H 1
  707. #endif
  708.  
  709. /* Define if you have the <sys/un.h> header file.  */
  710. /* #define HAVE_SYS_UN_H 1 */
  711.  
  712. /* Define if you have the <sys/utime.h> header file.  */
  713. /* #define HAVE_SYS_UTIME_H 1 */
  714.  
  715. /* Define if you have the <sys/utsname.h> header file.  */
  716. /* #define HAVE_SYS_UTSNAME_H 1 */
  717.  
  718. /* Define if you have the <thread.h> header file.  */
  719. /* #undef HAVE_THREAD_H */
  720.  
  721. /* Define if you have the <unistd.h> header file.  */
  722. /* #define HAVE_UNISTD_H 1 */
  723.  
  724. /* Define if you have the <utime.h> header file.  */
  725. /* #define HAVE_UTIME_H 1 */
  726.  
  727. /* Define if the compiler provides a wchar.h header file. */
  728. #define HAVE_WCHAR_H 1
  729.  
  730. /* Define if you have the dl library (-ldl).  */
  731. /* #undef HAVE_LIBDL */
  732.  
  733. /* Define if you have the mpc library (-lmpc).  */
  734. /* #undef HAVE_LIBMPC */
  735.  
  736. /* Define if you have the nsl library (-lnsl).  */
  737. #define HAVE_LIBNSL 1
  738.  
  739. /* Define if you have the seq library (-lseq).  */
  740. /* #undef HAVE_LIBSEQ */
  741.  
  742. /* Define if you have the socket library (-lsocket).  */
  743. #define HAVE_LIBSOCKET 1
  744.  
  745. /* Define if you have the sun library (-lsun).  */
  746. /* #undef HAVE_LIBSUN */
  747.  
  748. /* Define if you have the termcap library (-ltermcap).  */
  749. /* #undef HAVE_LIBTERMCAP */
  750.  
  751. /* Define if you have the termlib library (-ltermlib).  */
  752. /* #undef HAVE_LIBTERMLIB */
  753.  
  754. /* Define if you have the thread library (-lthread).  */
  755. /* #undef HAVE_LIBTHREAD */
  756.  
  757. /* WinSock does not use a bitmask in select, and uses
  758.    socket handles greater than FD_SETSIZE */
  759. #define Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE
  760.  
  761. /* Define if C doubles are 64-bit IEEE 754 binary format, stored with the
  762.    least significant byte first */
  763. #define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1
  764.  
  765. #endif /* !Py_CONFIG_H */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement