From: Victor Stinner Date: Fri, 10 Oct 2014 09:55:41 +0000 (+0200) Subject: Issue #22591: Drop support of MS-DOS X-Git-Tag: v3.5.0a1~715 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b71c7dc9ddd6997be49ed6aaabf99a067e2c0388;p=python 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 :'-( --- diff --git a/Include/osdefs.h b/Include/osdefs.h index 0c2e34b879..bd84c1c12c 100644 --- 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