* 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:
parent
fc9a7983cf
commit
5458a384ea
@ -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>
|
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
|
* lib/mkmf.rb (create_tmpsrc): retry to create file if Errno::EACCES
|
||||||
|
@ -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\
|
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\
|
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 \
|
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)
|
ucontext.h intrinsics.h langinfo.h locale.h)
|
||||||
|
|
||||||
dnl Check additional types.
|
dnl Check additional types.
|
||||||
|
@ -25,6 +25,10 @@
|
|||||||
#include <sys/uio.h>
|
#include <sys/uio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_XTI_H
|
||||||
|
#include <xti.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#if defined(__BEOS__)
|
#if defined(__BEOS__)
|
||||||
# include <net/socket.h>
|
# include <net/socket.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user