From 2d73ff4500d695ebc967c60b31c67f63fada794c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 27 Oct 2010 17:40:59 +0200 Subject: updated for version 7.3.046 Problem: Can't build Ruby on MS-Windows. Solution: Add #ifdef, don't use WIN3264 before including vim.h. --- src/if_ruby.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/if_ruby.c') diff --git a/src/if_ruby.c b/src/if_ruby.c index 0e95e17b7..397b77284 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -14,7 +14,9 @@ #include #include -#include "auto/config.h" +#ifdef HAVE_CONFIG_H +# include "auto/config.h" +#endif #ifdef _WIN32 # if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18) @@ -50,7 +52,7 @@ # define RUBY_EXPORT # endif -#ifndef WIN3264 +#if !(defined(WIN32) || defined(_WIN64)) # include # define HINSTANCE void* # define RUBY_PROC void* -- cgit v1.2.1