Patches item #1495999, was opened at 2006-05-27 16:15 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1495999&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core (C code) Group: Python 2.5 >Status: Closed >Resolution: Accepted Priority: 5 Submitted By: Luke Dunstan (infidel) Assigned to: Nobody/Anonymous (nobody) Summary: Windows CE support (part 2) Initial Comment: 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 ---------------------------------------------------------------------- >Comment By: Martin v. Löwis (loewis) Date: 2006-06-10 14:24 Message: 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_*. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1495999&group_id=5470 _______________________________________________ Patches mailing list [email protected] http://mail.python.org/mailman/listinfo/patches
