зеркало из https://github.com/github/ruby.git
* ext/fiddle/closure.c (USE_FFI_CLOSURE_ALLOC): add missing case:
RUBY_LIBFFI_MODVERSION is not defined (usually on Windows). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
09d4be59b5
Коммит
c0e0a684d7
|
@ -1,3 +1,8 @@
|
|||
Thu Apr 11 10:39:34 2013 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* ext/fiddle/closure.c (USE_FFI_CLOSURE_ALLOC): add missing case:
|
||||
RUBY_LIBFFI_MODVERSION is not defined (usually on Windows).
|
||||
|
||||
Thu Apr 11 09:27:04 2013 Konstantin Haase <me@rkh.im>
|
||||
|
||||
* dir.c (file_s_fnmatch): Document File::FNM_EXTGLOB flag.
|
||||
|
|
|
@ -13,7 +13,7 @@ typedef struct {
|
|||
#if defined(USE_FFI_CLOSURE_ALLOC)
|
||||
#elif defined(__OpenBSD__)
|
||||
# define USE_FFI_CLOSURE_ALLOC 0
|
||||
#elif RUBY_LIBFFI_MODVERSION < 3000005 && \
|
||||
#elif defined(RUBY_LIBFFI_MODVERSION) && RUBY_LIBFFI_MODVERSION < 3000005 && \
|
||||
(defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_AMD64))
|
||||
# define USE_FFI_CLOSURE_ALLOC 0
|
||||
#else
|
||||
|
|
Загрузка…
Ссылка в новой задаче