Sha256: 49230dee11874f100267d1f84fc813a6e762bb46a261ecbb0f7d82e7c7e5aaf8
Contents?: true
Size: 842 Bytes
Versions: 1
Compression:
Stored size: 842 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'}" tweak_include tweak_cflags create_makefile 'nyara'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nyara-0.0.1.pre.5 | ext/extconf.rb |