home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_include_config.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-26  |  17.7 KB  |  640 lines

  1. #ifndef Py_CONFIG_H
  2. #define Py_CONFIG_H
  3.  
  4. /* config.h.  NOT Generated automatically by configure.
  5.  
  6. This is a manually maintained version used for the Watcom,
  7. Borland and 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
  16. MS_WIN16 - Code specific to the old 16 bit Windows API.
  17. MS_WINDOWS - Code specific to Windows, but all versions.
  18. MS_COREDLL - Code if the Python core is built as a DLL.
  19.  
  20. Note that the old defines "NT" and "WIN32" are still supported, but
  21. will soon be dropped.
  22.  
  23. Also note that neither "_M_IX86" or "_MSC_VER" should be used for
  24. any purpose other than "Windows Intel x86 specific" and "Microsoft
  25. compiler specific".  Therefore, these should be very rare.
  26.  
  27. */
  28.  
  29.  
  30. /*
  31.  Some systems require special declarations for data items imported
  32.  or exported from dynamic link libraries.  Note that the definition
  33.  of DL_IMPORT covers both cases.  Define USE_DL_IMPORT for the client
  34.  of a DLL.  Define USE_DL_EXPORT when making a DLL.
  35. */
  36.  
  37. #include <io.h>
  38. #define HAVE_LIMITS_H
  39. #define HAVE_SYS_UTIME_H
  40. #define HAVE_HYPOT
  41. #define DONT_HAVE_SIG_ALARM
  42. #define DONT_HAVE_SIG_PAUSE
  43. #define LONG_BIT    32
  44. #define PREFIX ""
  45. #define EXEC_PREFIX ""
  46.  
  47. /* Microsoft C defines _MSC_VER */
  48. #ifdef _MSC_VER
  49.  
  50. /* MSVC defines _WINxx to differentiate the windows platform types
  51.  
  52.    Note that for compatibility reasons _WIN32 is defined on Win32
  53.    *and* on Win64. For the same reasons, in Python, MS_WIN32 is
  54.    defined on Win32 *and* Win64. Win32 only code must therefore be
  55.    guarded as follows:
  56.        #if defined(MS_WIN32) && !defined(MS_WIN64)
  57. */
  58. #ifdef _WIN64
  59. #define MS_WIN64
  60. #endif
  61. #ifdef _WIN32
  62. #define NT    /* NT is obsolete - please use MS_WIN32 instead */
  63. #define MS_WIN32
  64. #endif
  65. #ifdef _WIN16
  66. #define MS_WIN16
  67. #endif
  68. #define MS_WINDOWS
  69.  
  70. /* set the COMPILER */
  71. #ifdef MS_WIN64
  72. #ifdef _M_IX86
  73. #define COMPILER "[MSC 64 bit (Intel)]"
  74. #elif defined(_M_ALPHA)
  75. #define COMPILER "[MSC 64 bit (Alpha)]"
  76. #else
  77. #define COMPILER "[MSC 64 bit (Unknown)]"
  78. #endif
  79. #endif /* MS_WIN64 */
  80.  
  81. #if defined(MS_WIN32) && !defined(MS_WIN64)
  82. #ifdef _M_IX86
  83. #define COMPILER "[MSC 32 bit (Intel)]"
  84. #elif defined(_M_ALPHA)
  85. #define COMPILER "[MSC 32 bit (Alpha)]"
  86. #else
  87. #define COMPILER "[MSC (Unknown)]"
  88. #endif
  89. #endif /* MS_WIN32 && !MS_WIN64 */
  90.  
  91. #endif /* _MSC_VER */
  92.  
  93. #if defined(_MSC_VER) && _MSC_VER > 850
  94. /* Start of defines for MS_WIN32 using VC++ 2.0 and up */
  95.  
  96. /* For NT the Python core is in a DLL by default.  Test the
  97. standard macro MS_COREDLL to find out.  If you have an exception
  98. you must define MS_NO_COREDLL (do not test this macro) */
  99. #ifndef MS_NO_COREDLL
  100. #define MS_COREDLL    /* Python core is in a DLL */
  101. #ifndef USE_DL_EXPORT
  102. #define USE_DL_IMPORT
  103. #endif /* !USE_DL_EXPORT */
  104. #endif /* !MS_NO_COREDLL */
  105.  
  106. #define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
  107. typedef int pid_t;
  108. #define WORD_BIT 32
  109. #pragma warning(disable:4113)
  110. #define hypot _hypot
  111. #include <stdio.h>
  112. #define HAVE_CLOCK
  113. #define HAVE_STRFTIME
  114. #define HAVE_STRERROR
  115. #define NT_THREADS
  116. #define WITH_THREAD
  117. #ifndef NETSCAPE_PI
  118. #define USE_SOCKET
  119. #endif
  120. #ifdef USE_DL_IMPORT
  121. #define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
  122. #endif
  123. #ifdef USE_DL_EXPORT
  124. #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
  125. #define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
  126. #endif
  127.  
  128. #define HAVE_LONG_LONG 1
  129. #define LONG_LONG __int64
  130. #endif /* _MSC_VER && > 850 */
  131.  
  132. /* The Borland compiler defines __BORLANDC__ */
  133. /* XXX These defines are likely incomplete, but should be easy to fix. */
  134. #ifdef __BORLANDC__
  135. #define COMPILER "[Borland]"
  136. #define HAVE_CLOCK
  137. #define HAVE_STRFTIME
  138.  
  139. #ifdef _WIN32
  140.  
  141. /* tested with BCC 5.5 (__BORLANDC__ >= 0x0550)
  142.  */
  143. #define NT    /* NT is obsolete - please use MS_WIN32 instead */
  144. #define MS_WIN32
  145. #define MS_WINDOWS
  146.  
  147. /* For NT the Python core is in a DLL by default.  Test the
  148. standard macro MS_COREDLL to find out.  If you have an exception
  149. you must define MS_NO_COREDLL (do not test this macro) */
  150. #ifndef MS_NO_COREDLL
  151. #define MS_COREDLL    /* Python core is in a DLL */
  152. #ifndef USE_DL_EXPORT
  153. #define USE_DL_IMPORT
  154. #endif /* !USE_DL_EXPORT */
  155. #endif /* !MS_NO_COREDLL */
  156.  
  157. #define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
  158. typedef int pid_t;
  159. #define WORD_BIT 32
  160. #include <stdio.h>
  161. #define HAVE_STRERROR
  162. #define NT_THREADS
  163. #define WITH_THREAD
  164. #ifndef NETSCAPE_PI
  165. #define USE_SOCKET
  166. #endif
  167. /* BCC55 seems to understand __declspec(dllimport), it is used in its
  168.    own header files (winnt.h, ...) */
  169. #ifdef USE_DL_IMPORT
  170. #define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
  171. #endif
  172. #ifdef USE_DL_EXPORT
  173. #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
  174. #define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
  175. #endif
  176.  
  177. #define HAVE_LONG_LONG 1
  178. #define LONG_LONG __int64
  179.  
  180. #else /* !_WIN32 */
  181. #undef HAVE_SYS_UTIME_H
  182. #define HAVE_UTIME_H
  183. #define HAVE_DIRENT_H
  184. #define HAVE_CLOCK
  185. #error "Only Win32 and later are supported"
  186. #endif /* !_WIN32 */
  187.  
  188. #endif /* BORLANDC */
  189.  
  190. /* egcs/gnu-win32 defines __GNUC__ and _WIN32 */
  191. #if defined(__GNUC__) && defined(_WIN32)
  192. /* XXX These defines are likely incomplete, but should be easy to fix. 
  193.    They should be complete enough to build extension modules. */
  194. /* Suggested by Rene Liebscher <R.Liebscher@gmx.de> to avoid a GCC 2.91.*
  195.    bug that requires structure imports.  More recent versions of the
  196.    compiler don't exhibit this bug.
  197. */
  198. #if (__GNUC__==2) && (__GNUC_MINOR__<=91)
  199. #warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
  200. #endif
  201.  
  202. #define NT    /* NT is obsolete - please use MS_WIN32 instead */
  203. #define MS_WIN32
  204. #define MS_WINDOWS
  205.  
  206. /* For NT the Python core is in a DLL by default.  Test the
  207. standard macro MS_COREDLL to find out.  If you have an exception
  208. you must define MS_NO_COREDLL (do not test this macro) */
  209. #ifndef MS_NO_COREDLL
  210. #define MS_COREDLL    /* Python core is in a DLL */
  211. #ifndef USE_DL_EXPORT
  212. #define USE_DL_IMPORT
  213. #endif /* !USE_DL_EXPORT */
  214. #endif /* !MS_NO_COREDLL */
  215.  
  216. #define COMPILER "[gcc]"
  217. #define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
  218. #define WORD_BIT 32
  219. #define hypot _hypot
  220. #include <stdio.h>
  221. #define HAVE_CLOCK
  222. #define HAVE_STRFTIME
  223. #define HAVE_STRERROR
  224. #define NT_THREADS
  225. #define WITH_THREAD
  226. #ifndef NETSCAPE_PI
  227. #define USE_SOCKET
  228. #endif
  229. #ifdef USE_DL_IMPORT
  230. #define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
  231. #endif
  232. #ifdef USE_DL_EXPORT
  233. #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
  234. #define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
  235. #endif
  236.  
  237. #define HAVE_LONG_LONG 1
  238. #define LONG_LONG long long 
  239. #endif /* GNUC */
  240.  
  241. /* lcc-win32 defines __LCC__ */
  242.  
  243. #if defined(__LCC__)
  244. /* XXX These defines are likely incomplete, but should be easy to fix. 
  245.    They should be complete enough to build extension modules. */
  246.  
  247. #define NT    /* NT is obsolete - please use MS_WIN32 instead */
  248. #define MS_WIN32
  249. #define MS_WINDOWS
  250.  
  251. /* For NT the Python core is in a DLL by default.  Test the
  252. standard macro MS_COREDLL to find out.  If you have an exception
  253. you must define MS_NO_COREDLL (do not test this macro) */
  254. #ifndef MS_NO_COREDLL
  255. #define MS_COREDLL    /* Python core is in a DLL */
  256. #ifndef USE_DL_EXPORT
  257. #define USE_DL_IMPORT
  258. #endif /* !USE_DL_EXPORT */
  259. #endif /* !MS_NO_COREDLL */
  260.  
  261. #define COMPILER "[lcc-win32]"
  262. #define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk"
  263. typedef int pid_t;
  264. #define WORD_BIT 32
  265. #include <stdio.h>
  266. #define HAVE_CLOCK
  267. #define HAVE_STRFTIME
  268. #define HAVE_STRERROR
  269. #define NT_THREADS
  270. #define WITH_THREAD
  271. #ifndef NETSCAPE_PI
  272. #define USE_SOCKET
  273. #endif
  274. #ifdef USE_DL_IMPORT
  275. #define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
  276. #endif
  277. #ifdef USE_DL_EXPORT
  278. #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
  279. #define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
  280. #endif
  281.  
  282. #define HAVE_LONG_LONG 1
  283. #define LONG_LONG __int64
  284. #endif /* LCC */
  285.  
  286. /* End of compilers - finish up */
  287.  
  288. /* define some ANSI types that are not defined in earlier Win headers */
  289. #if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */
  290. #include <basetsd.h>
  291. #endif
  292. #if defined(MS_WINDOWS) && !defined(MS_WIN64)
  293. typedef long intptr_t;
  294. typedef unsigned long uintptr_t;
  295. #endif
  296.  
  297. #if defined(MS_WIN64)
  298. /* maintain "win32" sys.platform for backward compatibility of Python code,
  299.    the Win64 API should be close enough to the Win32 API to make this
  300.    preferable */
  301. #    define PLATFORM "win32"
  302. #    define SIZEOF_VOID_P 8
  303. #    define SIZEOF_TIME_T 8
  304. #    define SIZEOF_OFF_T 4
  305. #    define SIZEOF_FPOS_T 8
  306. #    define SIZEOF_HKEY 8
  307. /* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
  308.    sizeof(off_t) > sizeof(long), and sizeof(LONG_LONG) >= sizeof(off_t).
  309.    On Win64 the second condition is not true, but if fpos_t replaces off_t
  310.    then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64
  311.    should define this. */
  312. #    define HAVE_LARGEFILE_SUPPORT
  313. #elif defined(MS_WIN32)
  314. #    define PLATFORM "win32"
  315. #    ifdef _M_ALPHA
  316. #        define SIZEOF_VOID_P 8
  317. #        define SIZEOF_TIME_T 8
  318. #    else
  319. #        define SIZEOF_VOID_P 4
  320. #        define SIZEOF_TIME_T 4
  321. #        define SIZEOF_OFF_T 4
  322. #        define SIZEOF_FPOS_T 8
  323. #        define SIZEOF_HKEY 4
  324. #    endif
  325. #endif
  326.  
  327.  
  328. #ifdef MS_WIN32
  329.  
  330. #if !defined(USE_DL_EXPORT) && defined(_MSC_VER)
  331. /* So nobody using MSVC needs to specify the .lib in their Makefile any
  332.    more (other compilers will still need to do so, but that's taken care
  333.    of by the Distutils, so it's not a problem). */
  334. #ifdef _DEBUG
  335. #pragma comment(lib,"python21_d.lib")
  336. #else
  337. #pragma comment(lib,"python21.lib")
  338. #endif
  339. #endif /* USE_DL_EXPORT */
  340.  
  341. #ifdef _DEBUG
  342. #define Py_DEBUG
  343. #endif
  344.  
  345. #define SIZEOF_INT 4
  346. #define SIZEOF_LONG 4
  347. #define SIZEOF_LONG_LONG 8
  348.  
  349. #endif
  350.  
  351. /* Fairly standard from here! */
  352.  
  353. /* Define if on AIX 3.
  354.    System headers sometimes define this.
  355.    We just want to avoid a redefinition error message.  */
  356. #ifndef _ALL_SOURCE
  357. /* #undef _ALL_SOURCE */
  358. #endif
  359.  
  360. /* Define to empty if the keyword does not work.  */
  361. /* #define const  */
  362.  
  363. /* Define if you have dirent.h.  */
  364. /* #define DIRENT 1 */
  365.  
  366. /* Define to the type of elements in the array set by `getgroups'.
  367.    Usually this is either `int' or `gid_t'.  */
  368. /* #undef GETGROUPS_T */
  369.  
  370. /* Define to `int' if <sys/types.h> doesn't define.  */
  371. /* #undef gid_t */
  372.  
  373. /* Define if your struct tm has tm_zone.  */
  374. /* #undef HAVE_TM_ZONE */
  375.  
  376. /* Define if you don't have tm_zone but do have the external array
  377.    tzname.  */
  378. #define HAVE_TZNAME
  379.  
  380. /* Define if on MINIX.  */
  381. /* #undef _MINIX */
  382.  
  383. /* Define to `int' if <sys/types.h> doesn't define.  */
  384. /* #undef mode_t */
  385.  
  386. /* Define if you don't have dirent.h, but have ndir.h.  */
  387. /* #undef NDIR */
  388.  
  389. /* Define to `long' if <sys/types.h> doesn't define.  */
  390. /* #undef off_t */
  391.  
  392. /* Define to `int' if <sys/types.h> doesn't define.  */
  393. /* #undef pid_t */
  394.  
  395. /* Define if the system does not provide POSIX.1 features except
  396.    with this defined.  */
  397. /* #undef _POSIX_1_SOURCE */
  398.  
  399. /* Define if you need to in order for stat and other things to work.  */
  400. /* #undef _POSIX_SOURCE */
  401.  
  402. /* Define as the return type of signal handlers (int or void).  */
  403. #define RETSIGTYPE void
  404.  
  405. /* Define to `unsigned' if <sys/types.h> doesn't define.  */
  406. /* #undef size_t */
  407.  
  408. /* Define to `int' if <sys/types.h> doesn't define.  */
  409. #define socklen_t int
  410.  
  411. /* Define if you have the ANSI C header files.  */
  412. #define STDC_HEADERS 1
  413.  
  414. /* Define if you don't have dirent.h, but have sys/dir.h.  */
  415. /* #undef SYSDIR */
  416.  
  417. /* Define if you don't have dirent.h, but have sys/ndir.h.  */
  418. /* #undef SYSNDIR */
  419.  
  420. /* Define if you can safely include both <sys/time.h> and <time.h>.  */
  421. /* #undef TIME_WITH_SYS_TIME */
  422.  
  423. /* Define if your <sys/time.h> declares struct tm.  */
  424. /* #define TM_IN_SYS_TIME 1 */
  425.  
  426. /* Define to `int' if <sys/types.h> doesn't define.  */
  427. /* #undef uid_t */
  428.  
  429. /* Define if the closedir function returns void instead of int.  */
  430. /* #undef VOID_CLOSEDIR */
  431.  
  432. /* Define if your <unistd.h> contains bad prototypes for exec*()
  433.    (as it does on SGI IRIX 4.x) */
  434. /* #undef BAD_EXEC_PROTOTYPES */
  435.  
  436. /* Define if your compiler botches static forward declarations
  437.    (as it does on SCI ODT 3.0) */
  438. #define BAD_STATIC_FORWARD 1
  439.  
  440. /* Define if getpgrp() must be called as getpgrp(0)
  441.    and (consequently) setpgrp() as setpgrp(0, 0). */
  442. /* #undef GETPGRP_HAVE_ARGS */
  443.  
  444. /* Define this if your time.h defines altzone */
  445. /* #define HAVE_ALTZONE */
  446.  
  447. /* Define if you have the putenv function.  */
  448. #ifdef MS_WIN32
  449. /* Does this exist on Win16? */
  450. #define HAVE_PUTENV
  451. #endif
  452.  
  453. /* Define if your compiler supports function prototypes */
  454. #define HAVE_PROTOTYPES
  455.  
  456. /* Define if  you can safely include both <sys/select.h> and <sys/time.h>
  457.    (which you can't on SCO ODT 3.0). */
  458. /* #undef SYS_SELECT_WITH_SYS_TIME */
  459.  
  460. /* Define if you want to use SGI (IRIX 4) dynamic linking.
  461.    This requires the "dl" library by Jack Jansen,
  462.    ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
  463.    Don't bother on IRIX 5, it already has dynamic linking using SunOS
  464.    style shared libraries */
  465. /* #undef WITH_SGI_DL */
  466.  
  467. /* Define if you want to emulate SGI (IRIX 4) dynamic linking.
  468.    This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
  469.    Sequent Symmetry (Dynix), and Atari ST.
  470.    This requires the "dl-dld" library,
  471.    ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
  472.    as well as the "GNU dld" library,
  473.    ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
  474.    Don't bother on SunOS 4 or 5, they already have dynamic linking using
  475.    shared libraries */
  476. /* #undef WITH_DL_DLD */
  477.  
  478. /* Define if you want to compile in rudimentary thread support */
  479. /* #undef WITH_THREAD */
  480.  
  481. /* Define if you want to use the GNU readline library */
  482. /* #define WITH_READLINE 1 */
  483.  
  484. /* Define if you want cycle garbage collection */
  485. #define WITH_CYCLE_GC 1
  486.  
  487. /* Define if you have clock.  */
  488. /* #define HAVE_CLOCK */
  489.  
  490. /* Define when any dynamic module loading is enabled */
  491. #define HAVE_DYNAMIC_LOADING
  492.  
  493. /* Define if you have ftime.  */
  494. #define HAVE_FTIME
  495.  
  496. /* Define if you have getpeername.  */
  497. #define HAVE_GETPEERNAME
  498.  
  499. /* Define if you have getpgrp.  */
  500. /* #undef HAVE_GETPGRP */
  501.  
  502. /* Define if you have getpid.  */
  503. #define HAVE_GETPID
  504.  
  505. /* Define if you have gettimeofday.  */
  506. /* #undef HAVE_GETTIMEOFDAY */
  507.  
  508. /* Define if you have getwd.  */
  509. /* #undef HAVE_GETWD */
  510.  
  511. /* Define if you have lstat.  */
  512. /* #undef HAVE_LSTAT */
  513.  
  514. /* Define if you have the mktime function.  */
  515. #define HAVE_MKTIME
  516.  
  517. /* Define if you have nice.  */
  518. /* #undef HAVE_NICE */
  519.  
  520. /* Define if you have readlink.  */
  521. /* #undef HAVE_READLINK */
  522.  
  523. /* Define if you have select.  */
  524. /* #undef HAVE_SELECT */
  525.  
  526. /* Define if you have setpgid.  */
  527. /* #undef HAVE_SETPGID */
  528.  
  529. /* Define if you have setpgrp.  */
  530. /* #undef HAVE_SETPGRP */
  531.  
  532. /* Define if you have setsid.  */
  533. /* #undef HAVE_SETSID */
  534.  
  535. /* Define if you have setvbuf.  */
  536. #define HAVE_SETVBUF
  537.  
  538. /* Define if you have siginterrupt.  */
  539. /* #undef HAVE_SIGINTERRUPT */
  540.  
  541. /* Define if you have symlink.  */
  542. /* #undef HAVE_SYMLINK */
  543.  
  544. /* Define if you have tcgetpgrp.  */
  545. /* #undef HAVE_TCGETPGRP */
  546.  
  547. /* Define if you have tcsetpgrp.  */
  548. /* #undef HAVE_TCSETPGRP */
  549.  
  550. /* Define if you have times.  */
  551. /* #undef HAVE_TIMES */
  552.  
  553. /* Define if you have uname.  */
  554. /* #undef HAVE_UNAME */
  555.  
  556. /* Define if you have waitpid.  */
  557. /* #undef HAVE_WAITPID */
  558.  
  559. /* Define if you have the <dlfcn.h> header file.  */
  560. /* #undef HAVE_DLFCN_H */
  561.  
  562. /* Define if you have the <fcntl.h> header file.  */
  563. #define HAVE_FCNTL_H 1
  564.  
  565. /* Define if you have the <signal.h> header file.  */
  566. #define HAVE_SIGNAL_H 1
  567.  
  568. /* Define if you have the <stdarg.h> header file.  */
  569. #define HAVE_STDARG_H 1
  570.  
  571. /* Define if you have the <stdarg.h> prototypes.  */
  572. #define HAVE_STDARG_PROTOTYPES
  573.  
  574. /* Define if you have the <stddef.h> header file.  */
  575. #define HAVE_STDDEF_H 1
  576.  
  577. /* Define if you have the <stdlib.h> header file.  */
  578. #define HAVE_STDLIB_H 1
  579.  
  580. /* Define if you have the <sys/audioio.h> header file.  */
  581. /* #undef HAVE_SYS_AUDIOIO_H */
  582.  
  583. /* Define if you have the <sys/param.h> header file.  */
  584. /* #define HAVE_SYS_PARAM_H 1 */
  585.  
  586. /* Define if you have the <sys/select.h> header file.  */
  587. /* #define HAVE_SYS_SELECT_H 1 */
  588.  
  589. /* Define if you have the <sys/time.h> header file.  */
  590. /* #define HAVE_SYS_TIME_H 1 */
  591.  
  592. /* Define if you have the <sys/times.h> header file.  */
  593. /* #define HAVE_SYS_TIMES_H 1 */
  594.  
  595. /* Define if you have the <sys/un.h> header file.  */
  596. /* #define HAVE_SYS_UN_H 1 */
  597.  
  598. /* Define if you have the <sys/utime.h> header file.  */
  599. /* #define HAVE_SYS_UTIME_H 1 */
  600.  
  601. /* Define if you have the <sys/utsname.h> header file.  */
  602. /* #define HAVE_SYS_UTSNAME_H 1 */
  603.  
  604. /* Define if you have the <thread.h> header file.  */
  605. /* #undef HAVE_THREAD_H */
  606.  
  607. /* Define if you have the <unistd.h> header file.  */
  608. /* #define HAVE_UNISTD_H 1 */
  609.  
  610. /* Define if you have the <utime.h> header file.  */
  611. /* #define HAVE_UTIME_H 1 */
  612.  
  613. /* Define if you have the dl library (-ldl).  */
  614. /* #undef HAVE_LIBDL */
  615.  
  616. /* Define if you have the mpc library (-lmpc).  */
  617. /* #undef HAVE_LIBMPC */
  618.  
  619. /* Define if you have the nsl library (-lnsl).  */
  620. #define HAVE_LIBNSL 1
  621.  
  622. /* Define if you have the seq library (-lseq).  */
  623. /* #undef HAVE_LIBSEQ */
  624.  
  625. /* Define if you have the socket library (-lsocket).  */
  626. #define HAVE_LIBSOCKET 1
  627.  
  628. /* Define if you have the sun library (-lsun).  */
  629. /* #undef HAVE_LIBSUN */
  630.  
  631. /* Define if you have the termcap library (-ltermcap).  */
  632. /* #undef HAVE_LIBTERMCAP */
  633.  
  634. /* Define if you have the termlib library (-ltermlib).  */
  635. /* #undef HAVE_LIBTERMLIB */
  636.  
  637. /* Define if you have the thread library (-lthread).  */
  638. /* #undef HAVE_LIBTHREAD */
  639. #endif /* !Py_CONFIG_H */
  640.