* 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:
usa 2003-05-13 08:59:36 +00:00
Родитель bd810795c5
Коммит 161e19ded9
5 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -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>
* eval.c (error_pos): use $deferr for output instead of stderr

Просмотреть файл

@ -232,6 +232,7 @@ config.h:
/* \#define HAVE_RANDOM 1 */
\#define HAVE_WAITPID 1
\#define HAVE_GETCWD 1
\#define HAVE_FSYNC 1
/* \#define HAVE_TRUNCATE 1 */
\#define HAVE_CHSIZE 1
\#define HAVE_TIMES 1

Просмотреть файл

@ -282,6 +282,7 @@ mingw*) LIBS="-lwsock32 $LIBS"
ac_cv_header_sys_times_h=no
ac_cv_func_times=yes
ac_cv_func_waitpid=yes
ac_cv_func_fsync=yes
ac_cv_func_vsnprintf=yes
ac_cv_func_seekdir=yes
ac_cv_func_telldir=yes

Просмотреть файл

@ -253,6 +253,7 @@ config.h:
#define HAVE_HYPOT 1
#define HAVE_MODF 1
#define HAVE_WAITPID 1
#define HAVE_FSYNC 1
#define HAVE_CHSIZE 1
#define HAVE_TIMES 1
#define HAVE__SETJMP 1

Просмотреть файл

@ -119,6 +119,7 @@ extern "C++" {
#endif
#define vsnprintf _vsnprintf
#define snprintf _snprintf
#define fsync _commit
#undef stat
#define stat(path,st) rb_w32_stat(path,st)