Sha256: 4cce2ab64f99bd921aa5cd6a7c45ca9dba0791176efcf23932fdfae8945fc2dc

Contents?: true

Size: 803 Bytes

Versions: 6

Compression:

Stored size: 803 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/

CONFIG["optflags"] << " -Wcomment"
CONFIG["optflags"] << " -Wbitwise-op-parentheses"

dir_config "gyro_ext"
create_makefile "gyro_ext"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
polyphony-0.29 ext/gyro/extconf.rb
polyphony-0.28 ext/gyro/extconf.rb
polyphony-0.27 ext/gyro/extconf.rb
polyphony-0.26 ext/gyro/extconf.rb
polyphony-0.25 ext/gyro/extconf.rb
polyphony-0.24 ext/gyro/extconf.rb