summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/io.c b/io.c
index 7925c7b5e4..ed3023b190 100644
--- a/io.c
+++ b/io.c
@@ -26,7 +26,7 @@
#include <sys/types.h>
#if !defined(_WIN32) && !defined(__DJGPP__)
-# if defined(__BEOS__)
+#if defined(__BEOS__) && !defined(__HAIKU__)
# include <net/socket.h>
# else
# include <sys/socket.h>
@@ -90,7 +90,6 @@ extern void Init_File(void);
# ifndef NOFILE
# define NOFILE (OPEN_MAX)
# endif
-#include <net/socket.h>
#endif
#include "ruby/util.h"
@@ -202,6 +201,10 @@ static int max_file_descriptor = NOFILE;
# endif
#endif
+#if defined(__HAIKU__)
+#define shutdown(a,b) 0
+#endif
+
#if defined(_WIN32)
#define is_socket(fd, path) rb_w32_is_socket(fd)
#elif !defined(S_ISSOCK)