Sha256: bfac2fa77e229435e6d8682ea5aeed64b9bc6c446b7d9182ff8ee35a962f3778

Contents?: true

Size: 728 Bytes

Versions: 5

Compression:

Stored size: 728 Bytes

Contents

# frozen_string_literal: true

require "rubygems"

require "mkmf"

have_header("unistd.h")

$defs << "-DEV_USE_LINUXAIO"     if have_header("linux/aio_abi.h")
$defs << "-DEV_USE_SELECT"       if have_header("sys/select.h")
$defs << "-DEV_USE_POLL"         if have_type("port_event_t", "poll.h")
$defs << "-DEV_USE_EPOLL"        if have_header("sys/epoll.h")
$defs << "-DEV_USE_KQUEUE"       if have_header("sys/event.h") && have_header("sys/queue.h")
$defs << "-DEV_USE_PORT"         if have_type("port_event_t", "port.h")
$defs << "-DHAVE_SYS_RESOURCE_H" if have_header("sys/resource.h")

CONFIG["optflags"] << " -fno-strict-aliasing" unless RUBY_PLATFORM =~ /mswin/

dir_config "polyphony_ext"
create_makefile "polyphony_ext"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
polyphony-0.45.5 ext/polyphony/extconf.rb
polyphony-0.45.4 ext/polyphony/extconf.rb
polyphony-0.45.2 ext/polyphony/extconf.rb
polyphony-0.45.1 ext/polyphony/extconf.rb
polyphony-0.45.0 ext/polyphony/extconf.rb