* addr2line.c (PATH_MAX): define if not defined. [ruby-core:40840]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-11-08 14:31:56 +00:00
parent ebe0280253
commit 4342469e8c
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Tue Nov 8 23:30:21 2011 NARUSE, Yui <naruse@ruby-lang.org>
* addr2line.c (PATH_MAX): define if not defined. [ruby-core:40840]
Tue Nov 8 23:26:49 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/tk/tcltklib.c (rb_thread_critical): fix type.

View File

@ -68,6 +68,9 @@
# define ElfW(x) Elf32##_##x
# endif
#endif
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
typedef struct {
const char *dirname;