This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Windows CE support (part 2)
Type: Stage:
Components: Interpreter Core Versions: Python 2.5
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: infidel, loewis
Priority: normal Keywords: patch

Created on 2006-05-27 14:15 by infidel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python-trunk-wince-20060527.diff infidel, 2006-05-27 14:15 The patch
Messages (2)
msg50365 - (view) Author: Luke Dunstan (infidel) Date: 2006-05-27 14:15
This patch contains some more changes necessary to 
build Python trunk for Windows CE 4.x. More patches 
to come...

The changes are:

Missing headers: conio.h, direct.h, errno.h, io.h, 
process.h, signal.h, sys/stat.h, sys/types.h

- Change #ifndef DONT_HAVE_*_H to HAVE_*_H

- Add #ifdef guards for many of the #includes for 
these headers

- Add checks for headers to configure.in, 
pyconfig.h.in

- Add HAVE_*_H to manually edited versions of 
pyconfig.h (except for Windows CE)

- NOTE: the following are Windows-specific headers: 
conio.h, direct.h, io.h, process.h 

PC/pyconfig.h:

- define dummy macro implementations of getenv() and 
environ (Windows CE only)

- define macro implementation of GetVersion() 
(Windows CE only)

Modules/socketmodule.c: adjusted _MSC_VER conditional
msg50366 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2006-06-10 12:24
Logged In: YES 
user_id=21627

Thanks for the patch. Committed as r46719.

HAVE_IO_H was duplicated, so I remove one occurrence.
I also removed DONT_HAVE_*.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43420
2006-05-27 14:15:31infidelcreate