cpython: a1605d2508af (original) (raw)

Mercurial > cpython

changeset 92912:a1605d2508af

Issue #22591: Drop support of MS-DOS Drop support of MS-DOS, especially of the DJGPP compiler (MS-DOS port of GCC). Today is a sad day. Good bye MS-DOS, good bye my friend :'-( [#22591]

Victor Stinner victor.stinner@gmail.com
date Fri, 10 Oct 2014 11:55:41 +0200
parents 1adeac2a8714
children 7b53873a2d7c
files Include/osdefs.h
diffstat 1 files changed, 1 insertions(+), 4 deletions(-)[+] [-] Include/osdefs.h 5

line wrap: on

line diff

--- a/Include/osdefs.h +++ b/Include/osdefs.h @@ -7,15 +7,12 @@ extern "C" { /* Operating system dependencies / -/ Mod by chrish: QNX has WATCOM, but isn't DOS / -#if !defined(QNX) -#if defined(MS_WINDOWS) || defined(BORLANDC) || defined(WATCOMC) || defined(DJGPP) +#ifdef MS_WINDOWS #define SEP L'\' #define ALTSEP L'/' #define MAXPATHLEN 256 #define DELIM L';' #endif -#endif / Filename separator */ #ifndef SEP