зеркало из https://github.com/github/ruby.git
* addr2line.c: OpenBSD uses the elf_abi.h header file instead of the
elf.h header file. patched by Jeremy Evans [ruby-core:34384] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
6bcf709838
Коммит
4acff773ae
|
@ -1,3 +1,8 @@
|
|||
Wed Jan 12 11:33:46 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* addr2line.c: OpenBSD uses the elf_abi.h header file instead of the
|
||||
elf.h header file. patched by Jeremy Evans [ruby-core:34384]
|
||||
|
||||
Wed Jan 12 03:59:36 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* test/webrick/test_cgi.rb: Removes usage of deprecated
|
||||
|
|
|
@ -15,7 +15,11 @@
|
|||
|
||||
#ifdef __ELF__
|
||||
|
||||
#ifdef __OpenBSD__
|
||||
#include <elf_abi.h>
|
||||
#else
|
||||
#include <elf.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <stdio.h>
|
||||
|
|
Загрузка…
Ссылка в новой задаче