1
0
Fork 0
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:
tenderlove 2010-09-14 17:15:30 +00:00
parent bf77099923
commit 204f8d6820
2 changed files with 6 additions and 1 deletions

View file

@ -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> Tue Sep 14 20:17:48 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_s_getwd): Pathname.getwd and * ext/pathname/pathname.c (path_s_getwd): Pathname.getwd and

View file

@ -10,7 +10,7 @@ typedef struct {
ffi_type **argv; ffi_type **argv;
} fiddle_closure; } fiddle_closure;
#if defined(MACOSX) || defined(__linux) #if defined(MACOSX) || defined(__linux) || defined(__OpenBSD__)
#define DONT_USE_FFI_CLOSURE_ALLOC #define DONT_USE_FFI_CLOSURE_ALLOC
#endif #endif