Kaydet (Commit) b176203d authored tarafından Jesus Cea's avatar Jesus Cea

#16135: Removal of OS/2 support (C code and Docs)

üst 14c81aba
...@@ -9,16 +9,10 @@ extern "C" { ...@@ -9,16 +9,10 @@ extern "C" {
/* Mod by chrish: QNX has WATCOM, but isn't DOS */ /* Mod by chrish: QNX has WATCOM, but isn't DOS */
#if !defined(__QNX__) #if !defined(__QNX__)
#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2) #if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__)
#if defined(PYOS_OS2) && defined(PYCC_GCC)
#define MAXPATHLEN 260
#define SEP L'/'
#define ALTSEP L'\\'
#else
#define SEP L'\\' #define SEP L'\\'
#define ALTSEP L'/' #define ALTSEP L'/'
#define MAXPATHLEN 256 #define MAXPATHLEN 256
#endif
#define DELIM L';' #define DELIM L';'
#endif #endif
#endif #endif
......
...@@ -379,9 +379,6 @@ typedef size_t Py_uhash_t; ...@@ -379,9 +379,6 @@ typedef size_t Py_uhash_t;
#endif #endif
#ifdef HAVE_SYS_STAT_H #ifdef HAVE_SYS_STAT_H
#if defined(PYOS_OS2) && defined(PYCC_GCC)
#include <sys/types.h>
#endif
#include <sys/stat.h> #include <sys/stat.h>
#elif defined(HAVE_STAT_H) #elif defined(HAVE_STAT_H)
#include <stat.h> #include <stat.h>
......
project : n:\python\python-1.5.1\pc\wat_os2\pyth_os2.exe n:\python\python-1.&
5.1\pc\wat_dos\pyth_dos.exe .SYMBOLIC
!include n:\python\python-1.5.1\pc\wat_os2\pyth_os2.mk1
!include n:\python\python-1.5.1\pc\wat_dos\pyth_dos.mk1
...@@ -79,19 +79,6 @@ Legacy support for older versions of Visual Studio ...@@ -79,19 +79,6 @@ Legacy support for older versions of Visual Studio
The subdirectories VC6, VS7.1 and VS8.0 contain legacy support older The subdirectories VC6, VS7.1 and VS8.0 contain legacy support older
versions of Microsoft Visual Studio. See PCbuild/readme.txt. versions of Microsoft Visual Studio. See PCbuild/readme.txt.
EMX development tools for OS/2
==============================
See os2emx/readme.txt. This platform is maintained by Andrew MacIntyre.
IBM VisualAge C/C++ for OS/2
============================
See os2vacpp/readme.txt. This platform is supported by Jeff Rush.
NOTE: Support for os2vacpp may be dropped in the near future. Please move
to EMX.
Note for Windows 3.x and DOS users Note for Windows 3.x and DOS users
================================== ==================================
......
...@@ -125,7 +125,7 @@ def main(): ...@@ -125,7 +125,7 @@ def main():
# default the exclude list for each platform # default the exclude list for each platform
if win: exclude = exclude + [ if win: exclude = exclude + [
'dos', 'dospath', 'mac', 'macpath', 'macfs', 'MACFS', 'posix', 'dos', 'dospath', 'mac', 'macpath', 'macfs', 'MACFS', 'posix',
'os2', 'ce', 'ce',
] ]
fail_import = exclude[:] fail_import = exclude[:]
......
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