mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 01:23:57 +02:00
* dln.c: Ruby no longer supports Windows CE.
* eval.c: ditto. * include/ruby/defines.h: ditto. * include/ruby/win32.h: ditto. * ruby.c: ditto. * strftime.c: ditto. * win32/Makefile.sub: ditto. * win32/win32.c: ditto. * ext/tk/extconf.rb: ditto. * lib/fileutils.rb: ditto. * test/fileutils/test_fileutils.rb: ditto. * wince/*: removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
642e081879
commit
a8c3540b32
48 changed files with 38 additions and 3388 deletions
|
@ -33,11 +33,6 @@ extern "C" {
|
|||
|
||||
#define NT 1 /* deprecated */
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
#undef CharNext
|
||||
#define CharNext CharNextA
|
||||
#endif
|
||||
|
||||
//
|
||||
// We're not using Microsoft's "extensions" to C for
|
||||
// Structured Exception Handling (SEH) so we can nuke these
|
||||
|
@ -164,7 +159,7 @@ extern DWORD rb_w32_osid(void);
|
|||
|
||||
#undef execv
|
||||
#define execv(path,argv) rb_w32_aspawn(P_OVERLAY,path,argv)
|
||||
#if !defined(__BORLANDC__) && !defined(_WIN32_WCE)
|
||||
#if !defined(__BORLANDC__)
|
||||
#undef isatty
|
||||
#define isatty(h) rb_w32_isatty(h)
|
||||
#endif
|
||||
|
@ -265,7 +260,7 @@ extern int kill(int, int);
|
|||
extern int fcntl(int, int, ...);
|
||||
extern rb_pid_t rb_w32_getpid(void);
|
||||
extern rb_pid_t rb_w32_getppid(void);
|
||||
#if !defined(__BORLANDC__) && !defined(_WIN32_WCE)
|
||||
#if !defined(__BORLANDC__)
|
||||
extern int rb_w32_isatty(int);
|
||||
#endif
|
||||
extern int rb_w32_mkdir(const char *, int);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue