* configure.in, bcc32/Makefile.sub, win32/Makefile.sub: define
HAVE_FSYNC. * win32/win32.h (fsync): define as _commit(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bd810795c5
commit
161e19ded9
@ -1,3 +1,10 @@
|
|||||||
|
Tue May 13 17:58:08 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in, bcc32/Makefile.sub, win32/Makefile.sub: define
|
||||||
|
HAVE_FSYNC.
|
||||||
|
|
||||||
|
* win32/win32.h (fsync): define as _commit().
|
||||||
|
|
||||||
Tue May 13 14:48:07 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue May 13 14:48:07 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (error_pos): use $deferr for output instead of stderr
|
* eval.c (error_pos): use $deferr for output instead of stderr
|
||||||
|
@ -232,6 +232,7 @@ config.h:
|
|||||||
/* \#define HAVE_RANDOM 1 */
|
/* \#define HAVE_RANDOM 1 */
|
||||||
\#define HAVE_WAITPID 1
|
\#define HAVE_WAITPID 1
|
||||||
\#define HAVE_GETCWD 1
|
\#define HAVE_GETCWD 1
|
||||||
|
\#define HAVE_FSYNC 1
|
||||||
/* \#define HAVE_TRUNCATE 1 */
|
/* \#define HAVE_TRUNCATE 1 */
|
||||||
\#define HAVE_CHSIZE 1
|
\#define HAVE_CHSIZE 1
|
||||||
\#define HAVE_TIMES 1
|
\#define HAVE_TIMES 1
|
||||||
|
@ -282,6 +282,7 @@ mingw*) LIBS="-lwsock32 $LIBS"
|
|||||||
ac_cv_header_sys_times_h=no
|
ac_cv_header_sys_times_h=no
|
||||||
ac_cv_func_times=yes
|
ac_cv_func_times=yes
|
||||||
ac_cv_func_waitpid=yes
|
ac_cv_func_waitpid=yes
|
||||||
|
ac_cv_func_fsync=yes
|
||||||
ac_cv_func_vsnprintf=yes
|
ac_cv_func_vsnprintf=yes
|
||||||
ac_cv_func_seekdir=yes
|
ac_cv_func_seekdir=yes
|
||||||
ac_cv_func_telldir=yes
|
ac_cv_func_telldir=yes
|
||||||
|
@ -253,6 +253,7 @@ config.h:
|
|||||||
#define HAVE_HYPOT 1
|
#define HAVE_HYPOT 1
|
||||||
#define HAVE_MODF 1
|
#define HAVE_MODF 1
|
||||||
#define HAVE_WAITPID 1
|
#define HAVE_WAITPID 1
|
||||||
|
#define HAVE_FSYNC 1
|
||||||
#define HAVE_CHSIZE 1
|
#define HAVE_CHSIZE 1
|
||||||
#define HAVE_TIMES 1
|
#define HAVE_TIMES 1
|
||||||
#define HAVE__SETJMP 1
|
#define HAVE__SETJMP 1
|
||||||
|
@ -119,6 +119,7 @@ extern "C++" {
|
|||||||
#endif
|
#endif
|
||||||
#define vsnprintf _vsnprintf
|
#define vsnprintf _vsnprintf
|
||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
|
#define fsync _commit
|
||||||
#undef stat
|
#undef stat
|
||||||
#define stat(path,st) rb_w32_stat(path,st)
|
#define stat(path,st) rb_w32_stat(path,st)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user