mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9 lines
187 B
Ruby
9 lines
187 B
Ruby
|
require 'mkmf'
|
||
|
target = "io/nonblock"
|
||
|
|
||
|
hdr = %w"fcntl.h"
|
||
|
if have_macro("O_NONBLOCK", hdr) and
|
||
|
(have_macro("F_GETFL", hdr) or have_macro("F_SETFL", hdr))
|
||
|
create_makefile(target)
|
||
|
end
|