зеркало из https://github.com/github/ruby.git
* dir.c, file.c (lstat): avoid warnings for mingw.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
e3d946f250
Коммит
4f6e8bade5
|
@ -1,3 +1,7 @@
|
||||||
|
Mon Apr 11 22:18:23 2005 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
|
* dir.c, file.c (lstat): avoid warnings for mingw.
|
||||||
|
|
||||||
Mon Apr 11 20:11:06 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Mon Apr 11 20:11:06 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/tcltklib.c (ip_finalize): adhoc patch to avoid SEGV when exit
|
* ext/tk/tcltklib.c (ip_finalize): adhoc patch to avoid SEGV when exit
|
||||||
|
|
4
dir.c
4
dir.c
|
@ -63,8 +63,8 @@ char *strchr _((char*,char));
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#ifndef HAVE_LSTAT
|
#if !defined HAVE_LSTAT && !defined lstat
|
||||||
#define lstat(path,st) stat(path,st)
|
#define lstat stat
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define FNM_NOESCAPE 0x01
|
#define FNM_NOESCAPE 0x01
|
||||||
|
|
4
file.c
4
file.c
|
@ -64,8 +64,8 @@ char *strrchr _((const char*,const char));
|
||||||
#include <sys/mkdev.h>
|
#include <sys/mkdev.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_LSTAT
|
#if !defined HAVE_LSTAT && !defined lstat
|
||||||
#define lstat(path,st) stat(path,st)
|
#define lstat stat
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
VALUE rb_cFile;
|
VALUE rb_cFile;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче