Сборка libgc не удалась в Mac OS X 10.6 Snow Leopard: ... и требует определения _XOPEN_SOURCE - PullRequest
1 голос
/ 03 августа 2011

следующие шаги:

$ wget http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.0.tar.gz
$ tar xvfz gc-7.0.tar.gz
$ cd gc-7.0
$ ./configure
$ make

ошибка с этой ошибкой:

In file included from mach_dep.c:163:
/usr/include/ucontext.h:42:2: error: #error ucontext routines are deprecated, 
and require _XOPEN_SOURCE to be defined

1 Ответ

3 голосов
/ 03 августа 2011

ucontext.h включено сюда:

$ fstr "ucontext.h" # find string ...
./mach_dep.c:163
./os_dep.c:2752

Заменить ucontext.h в mach_dep.c на sys/ucontext.h.

Подробности: http://duriansoftware.com/joe/PSA:-avoiding-the-%22ucontext-routines-are-deprecated%22-error-on-Mac-OS-X-Snow-Leopard.html

...