mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix fd mask detection on os x
This was broken in r59440 (3215b27a9a
)
[Bug #14248]
From: Stefan Kaes <skaes@railsexpress.de>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
57e95f38b1
commit
ecbb128273
1 changed files with 2 additions and 1 deletions
|
@ -2039,7 +2039,8 @@ AC_CHECK_TYPES([clockid_t], [], [], [@%:@ifdef HAVE_TIME_H
|
|||
@%:@endif])
|
||||
|
||||
AC_CACHE_VAL([rb_cv_large_fd_select],
|
||||
[AC_CHECK_TYPE(fd_mask, [rb_cv_large_fd_select=yes], [rb_cv_large_fd_select=no], [@%:@ifdef HAVE_SYS_SELECT_H
|
||||
[AC_CHECK_TYPE(fd_mask, [rb_cv_large_fd_select=yes], [rb_cv_large_fd_select=no], [AC_INCLUDES_DEFAULT([])
|
||||
@%:@ifdef HAVE_SYS_SELECT_H
|
||||
@%:@ include <sys/select.h>
|
||||
@%:@endif])])
|
||||
AS_IF([test "$rb_cv_large_fd_select" = yes], [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue