1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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:
naruse 2011-01-12 02:35:07 +00:00
parent 6bcf709838
commit 4acff773ae
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -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>