diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 15:26:10 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 15:26:10 (GMT) |
commit | 6238d2b024f061159b2613387ff700695c10deef (patch) | |
tree | 2c882431a5f1a348c7b4589f0e51a7e0d8bdef46 /PC/pyconfig.h | |
parent | adfa7409f8286bd9581d5decfac5a5edcc1aa7de (diff) | |
download | cpython-6238d2b024f061159b2613387ff700695c10deef.zip cpython-6238d2b024f061159b2613387ff700695c10deef.tar.gz cpython-6238d2b024f061159b2613387ff700695c10deef.tar.bz2 |
Patch #569753: Remove support for WIN16.
Rename all occurrences of MS_WIN32 to MS_WINDOWS.
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r-- | PC/pyconfig.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 893db43..ac043eb 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -12,8 +12,7 @@ The code specific to Windows should be wrapped around one of the following #defines MS_WIN64 - Code specific to the MS Win64 API -MS_WIN32 - Code specific to the MS Win32 (and Win64) API -MS_WIN16 - Code specific to the old 16 bit Windows API. +MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs) MS_WINDOWS - Code specific to Windows, but all versions. MS_COREDLL - Code if the Python core is built as a DLL. @@ -65,9 +64,6 @@ compiler specific". Therefore, these should be very rare. #define NT /* NT is obsolete - please use MS_WIN32 instead */ #define MS_WIN32 #endif -#ifdef _WIN16 -#define MS_WIN16 -#endif #define MS_WINDOWS /* set the COMPILER */ @@ -451,10 +447,7 @@ typedef int pid_t; /* #define HAVE_ALTZONE */ /* Define if you have the putenv function. */ -#ifdef MS_WIN32 -/* Does this exist on Win16? */ #define HAVE_PUTENV -#endif /* Define if your compiler supports function prototypes */ #define HAVE_PROTOTYPES |