mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/fiddle/closure.c : Don't use FFI closure alloc on OpenBSD.
Thanks Jeremy Evans! [ruby-core:32384] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bf77099923
commit
204f8d6820
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Sep 15 02:13:44 2010 Aaron Patterson <aaron@tenderlovemaking.com>
|
||||
|
||||
* ext/fiddle/closure.c : Don't use FFI closure alloc on OpenBSD.
|
||||
Thanks Jeremy Evans! [ruby-core:32384]
|
||||
|
||||
Tue Sep 14 20:17:48 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/pathname/pathname.c (path_s_getwd): Pathname.getwd and
|
||||
|
|
|
@ -10,7 +10,7 @@ typedef struct {
|
|||
ffi_type **argv;
|
||||
} fiddle_closure;
|
||||
|
||||
#if defined(MACOSX) || defined(__linux)
|
||||
#if defined(MACOSX) || defined(__linux) || defined(__OpenBSD__)
|
||||
#define DONT_USE_FFI_CLOSURE_ALLOC
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue