cloudwu / coroutine

A asymmetric coroutine library for C.
MIT License
2.44k stars 686 forks source link

Made tiny change on include section to adapt compile on OSX #4

Closed Andrew-He closed 8 years ago

Andrew-He commented 8 years ago

Hi, Cloud,

  I am study coroutine, and found this project on your repository. I tried to compile and received the compile error as following, 

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/ucontext.h:43:2: error: The deprecated ucontext routines require _XOPEN_SOURCE to be defined

error The deprecated ucontext routines require _XOPEN_SOURCE to be defined

This issue is reported as in article,

http://duriansoftware.com/joe/PSA:-avoiding-the-%22ucontext-routines-are-deprecated%22-error-on-Mac-OS-X-Snow-Leopard.html

compiler macro refer to

https://sourceforge.net/p/predef/wiki/OperatingSystems/

Thank you your implementation of coroutine.