From: Bram Moolenaar Date: Mon, 2 Nov 2015 16:35:43 +0000 (+0100) Subject: patch 7.4.908 X-Git-Tag: v7.4.908 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a16f472edfa028e5574c7c145d02f3821edbc698;p=vim patch 7.4.908 Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef. --- diff --git a/src/if_perl.xs b/src/if_perl.xs index 19292b384..b429b4756 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -611,7 +611,7 @@ perl_runtime_link_init(char *libname, int verbose) 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; diff --git a/src/version.c b/src/version.c index 9f5510975..ade4e962b 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 908, /**/ 907, /**/