0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

updated for version 7.4.128

Problem:    Perl 5.18 for MSVC doesn't work.
Solution:   Add check in makefile and define __inline. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2013-12-14 11:50:35 +01:00
parent 7c0daf088e
commit 207fd75cac
3 changed files with 12 additions and 0 deletions

View File

@@ -44,6 +44,11 @@
# define PERL_NO_INLINE_FUNCTIONS
#endif
/* Work around for using MSVC and ActivePerl 5.18. */
#ifdef _MSC_VER
# define __inline__ __inline
#endif
#include <EXTERN.h>
#include <perl.h>
#include <XSUB.h>