Kaydet (Commit) b71c7dc9 authored tarafından Victor Stinner's avatar Victor Stinner

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 :'-(
üst e2ccf560
...@@ -7,15 +7,12 @@ extern "C" { ...@@ -7,15 +7,12 @@ extern "C" {
/* Operating system dependencies */ /* Operating system dependencies */
/* Mod by chrish: QNX has WATCOM, but isn't DOS */ #ifdef MS_WINDOWS
#if !defined(__QNX__)
#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__)
#define SEP L'\\' #define SEP L'\\'
#define ALTSEP L'/' #define ALTSEP L'/'
#define MAXPATHLEN 256 #define MAXPATHLEN 256
#define DELIM L';' #define DELIM L';'
#endif #endif
#endif
/* Filename separator */ /* Filename separator */
#ifndef SEP #ifndef SEP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment