Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 1 | #ifndef Py_CONFIG_H |
| 2 | #define Py_CONFIG_H |
| 3 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 4 | /* config.h. |
| 5 | * At some time in the past, generated automatically by/from configure. |
| 6 | * now maintained manually. |
| 7 | */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 8 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 9 | /* build environment */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 10 | #define PLATFORM "os2emx" |
| 11 | #define COMPILER "[EMX GCC " __VERSION__ "]" |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 12 | #define PYOS_OS2 1 |
| 13 | #define PYCC_GCC 1 |
| 14 | |
| 15 | /* default location(s) */ |
| 16 | #ifndef PREFIX |
| 17 | #define PREFIX "" |
| 18 | #endif |
| 19 | #ifndef PYTHONPATH |
| 20 | #define PYTHONPATH "./Lib;./Lib/plat-" PLATFORM \ |
| 21 | ";./Lib/lib-dynload;./Lib/site-packages" |
| 22 | #endif |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 23 | |
| 24 | /* Debugging */ |
| 25 | #ifndef Py_DEBUG |
| 26 | /*#define Py_DEBUG 1*/ |
| 27 | #endif |
| 28 | |
Andrew MacIntyre | 4ee893f | 2003-07-13 13:41:59 +0000 | [diff] [blame] | 29 | /* if building an extension or wrapper executable, |
| 30 | * mark Python API symbols "extern" so that symbols |
| 31 | * imported from the Python core DLL aren't duplicated. |
| 32 | */ |
| 33 | #ifdef Py_BUILD_CORE |
Andrew MacIntyre | bac1ea9 | 2003-07-16 13:31:11 +0000 | [diff] [blame] | 34 | # define PyAPI_FUNC(RTYPE) RTYPE |
Andrew MacIntyre | 4ee893f | 2003-07-13 13:41:59 +0000 | [diff] [blame] | 35 | #else |
Andrew MacIntyre | bac1ea9 | 2003-07-16 13:31:11 +0000 | [diff] [blame] | 36 | # define PyAPI_FUNC(RTYPE) extern RTYPE |
Andrew MacIntyre | 4ee893f | 2003-07-13 13:41:59 +0000 | [diff] [blame] | 37 | #endif |
Andrew MacIntyre | bac1ea9 | 2003-07-16 13:31:11 +0000 | [diff] [blame] | 38 | #define PyAPI_DATA(RTYPE) extern RTYPE |
| 39 | #define PyMODINIT_FUNC void |
Andrew MacIntyre | 4ee893f | 2003-07-13 13:41:59 +0000 | [diff] [blame] | 40 | |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 41 | /* Use OS/2 flavour of threads */ |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 42 | #define WITH_THREAD 1 |
| 43 | #define OS2_THREADS 1 |
Andrew MacIntyre | e52aa5c | 2002-12-31 11:24:43 +0000 | [diff] [blame] | 44 | |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 45 | /* We want sockets */ |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 46 | #define TCPIPV4 1 |
| 47 | #define USE_SOCKET 1 |
| 48 | #define socklen_t int |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 49 | #define FD_SETSIZE 1024 |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 50 | |
| 51 | /* enable the Python object allocator */ |
| 52 | #define WITH_PYMALLOC 1 |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 53 | |
| 54 | /* enable the GC module */ |
| 55 | #define WITH_CYCLE_GC 1 |
| 56 | |
Martin v. Löwis | 2befa48 | 2002-06-09 13:41:37 +0000 | [diff] [blame] | 57 | /* Define if you want documentation strings in extension modules */ |
| 58 | #define WITH_DOC_STRINGS 1 |
| 59 | |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 60 | /* Unicode related */ |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 61 | #define PY_UNICODE_TYPE wchar_t |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 62 | #define Py_UNICODE_SIZE SIZEOF_SHORT |
| 63 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 64 | /* EMX defines ssize_t */ |
| 65 | #define HAVE_SSIZE_T 1 |
| 66 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 67 | /* system capabilities */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 68 | #define HAVE_TTYNAME 1 |
| 69 | #define HAVE_WAIT 1 |
| 70 | #define HAVE_GETEGID 1 |
| 71 | #define HAVE_GETEUID 1 |
| 72 | #define HAVE_GETGID 1 |
| 73 | #define HAVE_GETPPID 1 |
| 74 | #define HAVE_GETUID 1 |
| 75 | #define HAVE_OPENDIR 1 |
| 76 | #define HAVE_PIPE 1 |
| 77 | #define HAVE_POPEN 1 |
| 78 | #define HAVE_SYSTEM 1 |
| 79 | #define HAVE_TTYNAME 1 |
| 80 | #define HAVE_DYNAMIC_LOADING 1 |
| 81 | |
| 82 | /* if port of GDBM installed, it includes NDBM emulation */ |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 83 | #define HAVE_NDBM_H 1 |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 84 | |
| 85 | /* need this for spawnv code in posixmodule (cloned from WIN32 def'n) */ |
| 86 | typedef long intptr_t; |
| 87 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 88 | /* we don't have tm_zone but do have the external array tzname */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 89 | #define HAVE_TZNAME 1 |
| 90 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 91 | /* Define as the return type of signal handlers (int or void). */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 92 | #define RETSIGTYPE void |
| 93 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 94 | /* Define if you have the ANSI C header files. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 95 | #define STDC_HEADERS 1 |
| 96 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 97 | /* Define if you can safely include both <sys/time.h> and <time.h>. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 98 | #define TIME_WITH_SYS_TIME 1 |
| 99 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 100 | /* Define this if you have the type long long. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 101 | #define HAVE_LONG_LONG 1 |
| 102 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 103 | /* Define if your compiler supports function prototypes. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 104 | #define HAVE_PROTOTYPES 1 |
| 105 | |
| 106 | /* Define if your compiler supports variable length function prototypes |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 107 | * (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h>. |
| 108 | */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 109 | #define HAVE_STDARG_PROTOTYPES 1 |
| 110 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 111 | /* Define if malloc(0) returns a NULL pointer. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 112 | #define MALLOC_ZERO_RETURNS_NULL 1 |
| 113 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 114 | /* Define to force use of thread-safe errno, h_errno, and other functions. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 115 | #define _REENTRANT 1 |
| 116 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 117 | /* Define if you can safely include both <sys/select.h> and <sys/time.h> |
| 118 | * (which you can't on SCO ODT 3.0). |
| 119 | */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 120 | #define SYS_SELECT_WITH_SYS_TIME 1 |
| 121 | |
| 122 | /* The number of bytes in an off_t. */ |
| 123 | #define SIZEOF_OFF_T 4 |
| 124 | |
| 125 | /* The number of bytes in an time_t. */ |
| 126 | #define SIZEOF_TIME_T 4 |
| 127 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 128 | /* The number of bytes in a short. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 129 | #define SIZEOF_SHORT 2 |
| 130 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 131 | /* The number of bytes in a int. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 132 | #define SIZEOF_INT 4 |
| 133 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 134 | /* The number of bytes in a long. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 135 | #define SIZEOF_LONG 4 |
| 136 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 137 | /* The number of bytes in a long long. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 138 | #define SIZEOF_LONG_LONG 8 |
| 139 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 140 | /* The number of bytes in a void *. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 141 | #define SIZEOF_VOID_P 4 |
| 142 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 143 | /* The number of bytes in a size_t. */ |
| 144 | #define SIZEOF_SIZE_T 4 |
| 145 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 146 | /* Define if you have the alarm function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 147 | #define HAVE_ALARM 1 |
| 148 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 149 | /* Define if you have the clock function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 150 | #define HAVE_CLOCK 1 |
| 151 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 152 | /* Define if you have the dup2 function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 153 | #define HAVE_DUP2 1 |
| 154 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 155 | /* Define if you have the execv function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 156 | #define HAVE_EXECV 1 |
| 157 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 158 | /* Define if you have the spawnv function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 159 | #define HAVE_SPAWNV 1 |
| 160 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 161 | /* Define if you have the flock function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 162 | #define HAVE_FLOCK 1 |
| 163 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 164 | /* Define if you have the fork function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 165 | #define HAVE_FORK 1 |
| 166 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 167 | /* Define if you have the fsync function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 168 | #define HAVE_FSYNC 1 |
| 169 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 170 | /* Define if you have the ftime function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 171 | #define HAVE_FTIME 1 |
| 172 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 173 | /* Define if you have the ftruncate function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 174 | #define HAVE_FTRUNCATE 1 |
| 175 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 176 | /* Define if you have the getcwd function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 177 | #define HAVE_GETCWD 1 |
| 178 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 179 | /* Define if you have the getpeername function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 180 | #define HAVE_GETPEERNAME 1 |
| 181 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 182 | /* Define if you have the getpgrp function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 183 | #define HAVE_GETPGRP 1 |
| 184 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 185 | /* Define if you have the getpid function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 186 | #define HAVE_GETPID 1 |
| 187 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 188 | /* Define if you have the getpwent function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 189 | #define HAVE_GETPWENT 1 |
| 190 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 191 | /* Define if you have the gettimeofday function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 192 | #define HAVE_GETTIMEOFDAY 1 |
| 193 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 194 | /* Define if you have the getwd function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 195 | #define HAVE_GETWD 1 |
| 196 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 197 | /* Define if you have the hypot function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 198 | #define HAVE_HYPOT 1 |
| 199 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 200 | /* Define if you have the kill function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 201 | #define HAVE_KILL 1 |
| 202 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 203 | /* Define if you have the memmove function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 204 | #define HAVE_MEMMOVE 1 |
| 205 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 206 | /* Define if you have the mktime function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 207 | #define HAVE_MKTIME 1 |
| 208 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 209 | /* Define if you have the pause function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 210 | #define HAVE_PAUSE 1 |
| 211 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 212 | /* Define if you have the putenv function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 213 | #define HAVE_PUTENV 1 |
| 214 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 215 | /* Define if you have the select function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 216 | #define HAVE_SELECT 1 |
| 217 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 218 | /* Define if you have the setgid function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 219 | #define HAVE_SETGID 1 |
| 220 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 221 | /* Define if you have the setlocale function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 222 | #define HAVE_SETLOCALE 1 |
| 223 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 224 | /* Define if you have the setpgid function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 225 | #define HAVE_SETPGID 1 |
| 226 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 227 | /* Define if you have the setuid function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 228 | #define HAVE_SETUID 1 |
| 229 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 230 | /* Define if you have the setvbuf function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 231 | #define HAVE_SETVBUF 1 |
| 232 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 233 | /* Define if you have the sigaction function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 234 | #define HAVE_SIGACTION 1 |
| 235 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 236 | /* Define if you have the strerror function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 237 | #define HAVE_STRERROR 1 |
| 238 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 239 | /* Define if you have the strftime function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 240 | #define HAVE_STRFTIME 1 |
| 241 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 242 | /* Define if you have the tcgetpgrp function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 243 | #define HAVE_TCGETPGRP 1 |
| 244 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 245 | /* Define if you have the tcsetpgrp function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 246 | #define HAVE_TCSETPGRP 1 |
| 247 | |
Andrew MacIntyre | 0dda400 | 2003-06-09 08:16:59 +0000 | [diff] [blame] | 248 | /* Define if you have the tmpfile function. */ |
| 249 | #define HAVE_TMPFILE 1 |
| 250 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 251 | /* Define if you have the times function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 252 | #define HAVE_TIMES 1 |
| 253 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 254 | /* Define if you have the truncate function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 255 | #define HAVE_TRUNCATE 1 |
| 256 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 257 | /* Define if you have the uname function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 258 | #define HAVE_UNAME 1 |
| 259 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 260 | /* Define if you have the waitpid function. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 261 | #define HAVE_WAITPID 1 |
| 262 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 263 | /* Define if you have the <conio.h> header file. */ |
| 264 | #undef HAVE_CONIO_H |
| 265 | |
| 266 | /* Define if you have the <direct.h> header file. */ |
| 267 | #undef HAVE_DIRECT_H |
| 268 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 269 | /* Define if you have the <dirent.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 270 | #define HAVE_DIRENT_H 1 |
| 271 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 272 | /* Define if you have the <errno.h> header file. */ |
| 273 | #define HAVE_ERRNO_H 1 |
| 274 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 275 | /* Define if you have the <fcntl.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 276 | #define HAVE_FCNTL_H 1 |
| 277 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 278 | /* Define if you have the <io.h> header file. */ |
| 279 | #undef HAVE_IO_H |
| 280 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 281 | /* Define if you have the <ncurses.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 282 | #define HAVE_NCURSES_H 1 |
| 283 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 284 | /* Define to 1 if you have the <process.h> header file. */ |
| 285 | #define HAVE_PROCESS_H 1 |
| 286 | |
| 287 | /* Define if you have the <signal.h> header file. */ |
| 288 | #define HAVE_SIGNAL_H 1 |
| 289 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 290 | /* Define if you have the <sys/file.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 291 | #define HAVE_SYS_FILE_H 1 |
| 292 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 293 | /* Define if you have the <sys/param.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 294 | #define HAVE_SYS_PARAM_H 1 |
| 295 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 296 | /* Define if you have the <sys/select.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 297 | #define HAVE_SYS_SELECT_H 1 |
| 298 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 299 | /* Define if you have the <sys/stat.h> header file. */ |
| 300 | #define HAVE_SYS_STAT_H 1 |
| 301 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 302 | /* Define if you have the <sys/time.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 303 | #define HAVE_SYS_TIME_H 1 |
| 304 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 305 | /* Define if you have the <sys/times.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 306 | #define HAVE_SYS_TIMES_H 1 |
| 307 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 308 | /* Define if you have the <sys/types.h> header file. */ |
| 309 | #define HAVE_SYS_TYPES_H 1 |
| 310 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 311 | /* Define if you have the <sys/un.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 312 | #define HAVE_SYS_UN_H 1 |
| 313 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 314 | /* Define if you have the <sys/utsname.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 315 | #define HAVE_SYS_UTSNAME_H 1 |
| 316 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 317 | /* Define if you have the <sys/wait.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 318 | #define HAVE_SYS_WAIT_H 1 |
| 319 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 320 | /* Define if you have the <unistd.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 321 | #define HAVE_UNISTD_H 1 |
| 322 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 323 | /* Define if you have the <utime.h> header file. */ |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 324 | #define HAVE_UTIME_H 1 |
| 325 | |
Andrew MacIntyre | d4c9b16 | 2003-04-21 14:28:01 +0000 | [diff] [blame] | 326 | /* EMX has an snprintf(). */ |
| 327 | #define HAVE_SNPRINTF 1 |
Andrew MacIntyre | 41d97d6 | 2002-02-17 05:23:30 +0000 | [diff] [blame] | 328 | |
| 329 | #endif /* !Py_CONFIG_H */ |
| 330 | |