changeset 7198:b58e16f9119e v7.4.908

commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 2 17:35:43 2015 +0100 patch 7.4.908 Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef.
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Nov 2015 17:45:04 +0100
parents 8e4508366e5b
children 799095feea6d
files src/if_perl.xs src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/if_perl.xs
+++ b/src/if_perl.xs
@@ -611,7 +611,7 @@ perl_runtime_link_init(char *libname, in
 perl_enabled(verbose)
     int		verbose;
 {
-#if WIN3264
+#ifdef WIN3264
     char *dll = DYNAMIC_PERL_DLL;
 #else
     char *dll = *p_perldll ? (char *)p_perldll : DYNAMIC_PERL_DLL;
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    908,
+/**/
     907,
 /**/
     906,