aboutsummaryrefslogtreecommitdiffstats
path: root/ext/-test-/wait_for_single_fd/extconf.rb
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-14 23:51:35 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-14 23:51:35 +0000
commit863e24b2b1a1b946c89d32575c2814b564a1bf95 (patch)
tree7ba4f07a29af87065fd3e1c108ba42f8bfeb33e2 /ext/-test-/wait_for_single_fd/extconf.rb
parentbaaf3ba189cd31a99fce3a3932cb30fd07e8eb19 (diff)
downloadruby-863e24b2b1a1b946c89d32575c2814b564a1bf95.tar.gz
test_wait_for_single_fd: ensure this works with kqueue
Regardless of future features, this needs to work with kqueue descriptors across platforms. Today this will be useful for 3rd-party libraries using kqueue. In the future, Ruby may use kqueue natively and we shall ensure we can wait on it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-/wait_for_single_fd/extconf.rb')
-rw-r--r--ext/-test-/wait_for_single_fd/extconf.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/-test-/wait_for_single_fd/extconf.rb b/ext/-test-/wait_for_single_fd/extconf.rb
index 931662c040..2a976c8f4b 100644
--- a/ext/-test-/wait_for_single_fd/extconf.rb
+++ b/ext/-test-/wait_for_single_fd/extconf.rb
@@ -1,2 +1,4 @@
# frozen_string_literal: false
+headers = %w(sys/types.h sys/time.h sys/event.h).select { |h| have_header(h) }
+have_func('kqueue', headers)
create_makefile("-test-/wait_for_single_fd")