summaryrefslogtreecommitdiff
path: root/ext/fiddle/closure.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-11 01:40:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-11 01:40:11 +0000
commitc0e0a684d75f53c2606d3f793491bc723372b3fe (patch)
tree1919f4ec0408ddd20ab9a283105f04349c7783a8 /ext/fiddle/closure.c
parent09d4be59b52ded308baa9ff3621e124bcf3173b7 (diff)
* 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
Diffstat (limited to 'ext/fiddle/closure.c')
-rw-r--r--ext/fiddle/closure.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fiddle/closure.c b/ext/fiddle/closure.c
index 1aab631aad..5439140649 100644
--- a/ext/fiddle/closure.c
+++ b/ext/fiddle/closure.c
@@ -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