Sha256: fdbdd379f29938b0449770625892e5e6fb3f94993b3f8b5c4d13a192876bbcc3
Contents?: true
Size: 882 Bytes
Versions: 2
Compression:
Stored size: 882 Bytes
Contents
require "mkmf" def tweak_include dir = File.dirname __FILE__ multipart_dir = File.join dir, "multipart-parser-c" http_parser_dir = File.join dir, "http-parser" flags = " -I#{multipart_dir.shellescape} -I#{http_parser_dir.shellescape}" $CFLAGS << flags $CPPFLAGS << flags end def tweak_cflags mf_conf = RbConfig::MAKEFILE_CONFIG if mf_conf['CC'] =~ /gcc/ $CFLAGS << ' -std=c99 -Wno-declaration-after-statement $(xflags)' end $CPPFLAGS << ' $(xflags)' puts "To enable debug: make xflags='-DDEBUG -O0'" end have_kqueue = (have_header("sys/event.h") and have_header("sys/queue.h")) have_epoll = have_func('epoll_create', 'sys/epoll.h') abort('no kqueue nor epoll') if !have_kqueue and !have_epoll $defs << "-DNDEBUG -D#{have_epoll ? 'HAVE_EPOLL' : 'HAVE_KQUEUE'}" have_func('rb_ary_new_capa', 'ruby.h') tweak_include tweak_cflags create_makefile 'nyara'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nyara-0.0.1.pre.8 | ext/extconf.rb |
nyara-0.0.1.pre.6 | ext/extconf.rb |