(original) (raw)

changeset: 92912:a1605d2508af user: Victor Stinner victor.stinner@gmail.com date: Fri Oct 10 11:55:41 2014 +0200 files: Include/osdefs.h description: 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 -r 1adeac2a8714 -r a1605d2508af Include/osdefs.h --- a/Include/osdefs.h Fri Oct 10 11:14:49 2014 +0300 +++ b/Include/osdefs.h Fri Oct 10 11:55:41 2014 +0200 @@ -7,15 +7,12 @@ /* 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 /victor.stinner@gmail.com