diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-20 08:14:56 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-20 08:14:56 +0000 |
| commit | b021a435f896aa7a67d64b2bace9b7897214f86e (patch) | |
| tree | 295e883272b6f6f93c5bb16a83a259fad09fdd99 | |
| parent | edbfabc8b31a75c0f44046b8a3b57c8524f16658 (diff) | |
| download | ruby-b021a435f896aa7a67d64b2bace9b7897214f86e.tar.gz ruby-b021a435f896aa7a67d64b2bace9b7897214f86e.tar.xz ruby-b021a435f896aa7a67d64b2bace9b7897214f86e.zip | |
* io.c: PIPE_BUF is not defined on BeOS. use _POSIX_PIPE_BUF instead.
[ruby-dev:27185]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | io.c | 8 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue Sep 20 17:08:31 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * io.c: PIPE_BUF is not defined on BeOS. use _POSIX_PIPE_BUF instead. + [ruby-dev:27185] + Tue Sep 20 16:53:53 2005 Yukihiro Matsumoto <matz@ruby-lang.org> * test/readline/test_readline.rb (TestReadline::replace_stdio): @@ -94,6 +94,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; |
