macournoyer / tinyrb

A tiny subset of Ruby with a Lua'esc VM

Home Page:http://code.macournoyer.com/tinyrb/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix for compilation under Snow Leopard

nicruby opened this issue · comments

Under Mac OS X Snow Leopard, got an error during compilation :

/usr/include/ucontext.h:42:2: error: #error ucontext routines are deprecated, and require _XOPEN_SOURCE to be defined

Replaced #include <ucontext.h> by <sys/context.h> solved the issue.

Delano already fixed this issue in his fork. Should apply it back to trunk.