diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-06-10 12:23:46 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-06-10 12:23:46 (GMT) |
commit | 0e8bd7e1ccf7f47bc0bb920af899c77669016d3d (patch) | |
tree | a2724cb3463072f259b31175662d9a03ed02b4c3 /RISCOS | |
parent | acd0d6d4160c6b7f12d80807a4312f6f57338b4d (diff) | |
download | cpython-0e8bd7e1ccf7f47bc0bb920af899c77669016d3d.zip cpython-0e8bd7e1ccf7f47bc0bb920af899c77669016d3d.tar.gz cpython-0e8bd7e1ccf7f47bc0bb920af899c77669016d3d.tar.bz2 |
Patch #1495999: Part two of Windows CE changes.
- update header checks, using autoconf
- provide dummies for getenv, environ, and GetVersion
- adjust MSC_VER check in socketmodule.c
Diffstat (limited to 'RISCOS')
-rw-r--r-- | RISCOS/pyconfig.h | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/RISCOS/pyconfig.h b/RISCOS/pyconfig.h index 45f87be..9a34d41 100644 --- a/RISCOS/pyconfig.h +++ b/RISCOS/pyconfig.h @@ -553,6 +553,9 @@ /* Define if you have the waitpid function. */ #undef HAVE_WAITPID +/* Define if you have the <conio.h> header file. */ +#undef HAVE_CONIO_H + /* Define if you have the <db.h> header file. */ #undef HAVE_DB_H @@ -562,18 +565,27 @@ /* Define if you have the <db_185.h> header file. */ #undef HAVE_DB_185_H +/* Define if you have the <direct.h> header file. */ +#undef HAVE_DIRECT_H + /* Define if you have the <dirent.h> header file. */ #undef HAVE_DIRENT_H /* Define if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H +/* Define if you have the <errno.h> header file. */ +#define HAVE_ERRNO_H 1 + /* Define if you have the <fcntl.h> header file. */ #undef HAVE_FCNTL_H /* Define if you have the <gdbm/ndbm.h> header file. */ #undef HAVE_GDBM_NDBM_H +/* Define if you have the <io.h> header file. */ +#undef HAVE_IO_H + /* Define if you have the <langinfo.h> header file. */ #undef HAVE_LANGINFO_H @@ -595,12 +607,18 @@ /* Define if you have the <poll.h> header file. */ #undef HAVE_POLL_H +/* Define if you have the <process.h> header file. */ +#undef HAVE_PROCESS_H + /* Define if you have the <pthread.h> header file. */ #undef HAVE_PTHREAD_H /* Define if you have the <pty.h> header file. */ #undef HAVE_PTY_H +/* Define if you have the <signal.h> header file. */ +#define HAVE_SIGNAL_H + /* Define if you have the <sys/audioio.h> header file. */ #undef HAVE_SYS_AUDIOIO_H @@ -634,12 +652,18 @@ /* Define if you have the <sys/socket.h> header file. */ #undef HAVE_SYS_SOCKET_H +/* Define if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + /* Define if you have the <sys/time.h> header file. */ #undef HAVE_SYS_TIME_H /* Define if you have the <sys/times.h> header file. */ #undef HAVE_SYS_TIMES_H +/* Define if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + /* Define if you have the <sys/un.h> header file. */ #undef HAVE_SYS_UN_H @@ -688,7 +712,6 @@ #define DONT_HAVE_FSTAT 1 #define DONT_HAVE_STAT 1 -#undef DONT_HAVE_SYS_STAT_H #define PLATFORM "riscos" |