* io.c: PIPE_BUF is not defined on BeOS. use _POSIX_PIPE_BUF instead.

[ruby-dev:27185]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2005-09-20 08:14:56 +00:00
parent d578f9d32e
commit 184766e02e
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Sep 20 17:14:10 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* io.c: PIPE_BUF is not defined in BeOS. use _POSIX_PIPE_BUF instead.
[ruby-dev:27185]
Tue Sep 20 15:39:40 2005 why the lucky stiff <why@ruby-lang.org>
* ext/syck/emitter.c (syck_scan_scalar): prevent indicators from

8
io.c
View File

@ -91,6 +91,14 @@ extern void Init_File(void);
# error off_t is bigger than long, but you have no long long...
#endif
#ifndef PIPE_BUF
# ifdef _POSIX_PIPE_BUF
# define PIPE_BUF _POSIX_PIPE_BUF
# else
# define PIPE_BUF 512 /* is this ok? */
# endif
#endif
VALUE rb_cIO;
VALUE rb_eEOFError;
VALUE rb_eIOError;