summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-20 08:14:56 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-20 08:14:56 +0000
commit184766e02e4d140fcbad714b12bc810708bff05b (patch)
tree8505ba013b9041737e6c8f46d433c3ce9a47d0be /io.c
parentd578f9d32e4c13df9ebf51873ae335c5e5a795ce (diff)
* 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
Diffstat (limited to 'io.c')
-rw-r--r--io.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/io.c b/io.c
index f3badc966a..b335eae750 100644
--- a/io.c
+++ b/io.c
@@ -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;