* ext/socket/socket.c: a patch to support IRIX from Andrew

Thompson <andrew@hijacked.us> in [ruby-core:14447].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-12-27 01:47:11 +00:00
parent fc9a7983cf
commit 5458a384ea
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Dec 27 10:44:03 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/socket/socket.c: a patch to support IRIX from Andrew
Thompson <andrew@hijacked.us> in [ruby-core:14447].
Thu Dec 27 02:25:45 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/mkmf.rb (create_tmpsrc): retry to create file if Errno::EACCES

View File

@ -566,7 +566,7 @@ AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(stdlib.h string.h unistd.h limits.h sys/file.h sys/ioctl.h sys/syscall.h\
fcntl.h sys/fcntl.h sys/select.h sys/time.h sys/times.h sys/param.h\
syscall.h pwd.h grp.h a.out.h utime.h memory.h direct.h sys/resource.h \
sys/mkdev.h sys/utime.h netinet/in_systm.h float.h ieeefp.h pthread.h \
sys/mkdev.h sys/utime.h xti.h netinet/in_systm.h float.h ieeefp.h pthread.h \
ucontext.h intrinsics.h langinfo.h locale.h)
dnl Check additional types.

View File

@ -25,6 +25,10 @@
#include <sys/uio.h>
#endif
#ifdef HAVE_XTI_H
#include <xti.h>
#endif
#ifndef _WIN32
#if defined(__BEOS__)
# include <net/socket.h>