1994-01-04 18:02:27 -04:00
|
|
|
|
/* Leave this blank line here -- autoheader needs it! */
|
|
|
|
|
|
|
|
|
|
|
1996-07-30 15:05:21 -03:00
|
|
|
|
/* Define if you have the Mach cthreads package */
|
|
|
|
|
#undef C_THREADS
|
|
|
|
|
|
2001-06-23 13:30:13 -03:00
|
|
|
|
/* Define if --enable-ipv6 is specified */
|
|
|
|
|
#undef ENABLE_IPV6
|
|
|
|
|
|
1999-03-22 17:46:06 -04:00
|
|
|
|
/* Define this if you have gethostbyname() */
|
1999-12-16 13:49:02 -04:00
|
|
|
|
#undef HAVE_GETHOSTBYNAME
|
1999-03-22 17:46:06 -04:00
|
|
|
|
|
|
|
|
|
/* Define this if you have some version of gethostbyname_r() */
|
|
|
|
|
#undef HAVE_GETHOSTBYNAME_R
|
|
|
|
|
|
2001-01-16 11:01:26 -04:00
|
|
|
|
/* Define if you have termios available */
|
|
|
|
|
#undef HAVE_TERMIOS_H
|
|
|
|
|
|
2001-06-26 19:22:37 -03:00
|
|
|
|
/* Define as the integral type used for Unicode representation. */
|
|
|
|
|
#undef PY_UNICODE_TYPE
|
|
|
|
|
|
|
|
|
|
/* Define as the size of the unicode type. */
|
|
|
|
|
#undef Py_UNICODE_SIZE
|
|
|
|
|
|
1996-07-31 14:35:30 -03:00
|
|
|
|
/* Define to force use of thread-safe errno, h_errno, and other functions */
|
|
|
|
|
#undef _REENTRANT
|
|
|
|
|
|
1998-10-02 11:41:38 -03:00
|
|
|
|
/* sizeof(void *) */
|
|
|
|
|
#undef SIZEOF_VOID_P
|
|
|
|
|
|
2000-04-24 12:12:04 -03:00
|
|
|
|
/* Define to `int' if <sys/types.h> doesn't define. */
|
|
|
|
|
#undef socklen_t
|
|
|
|
|
|
1994-01-04 18:02:27 -04:00
|
|
|
|
/* Define for SOLARIS 2.x */
|
|
|
|
|
#undef SOLARIS
|
|
|
|
|
|
2001-01-10 16:40:46 -04:00
|
|
|
|
/* Define if you want to use BSD db. */
|
|
|
|
|
#undef WITH_LIBDB
|
2000-06-30 13:02:58 -03:00
|
|
|
|
|
2001-01-16 11:01:26 -04:00
|
|
|
|
/* Define if you want to use ndbm. */
|
|
|
|
|
#undef WITH_LIBNDBM
|
|
|
|
|
|
2001-01-10 16:40:46 -04:00
|
|
|
|
/* Define if you want to compile in rudimentary thread support */
|
|
|
|
|
#undef WITH_THREAD
|
2000-07-08 01:17:21 -03:00
|
|
|
|
|
1994-01-04 18:02:27 -04:00
|
|
|
|
|
|
|
|
|
/* Leave that blank line there-- autoheader needs it! */
|
2001-01-10 17:09:12 -04:00
|
|
|
|
|
|
|
|
|
@BOTTOM@
|
|
|
|
|
|
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
|
#ifdef USE_DL_IMPORT
|
|
|
|
|
#define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
|
|
|
|
|
#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
|
|
|
|
|
#else
|
|
|
|
|
#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
|
|
|
|
|
#define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
2001-09-05 12:18:00 -03:00
|
|
|
|
|
|
|
|
|
/* Define the macros needed if on a UnixWare 7.x system. */
|
|
|
|
|
#if defined(__USLC__) && defined(__SCO_VERSION__)
|
|
|
|
|
#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
|
|
|
|
|
#endif
|
|
|
|
|
|