# HG changeset patch # User Christian Brabandt # Date 1446482704 -3600 # Node ID b58e16f9119e414dcc14580aad994aa37972de65 # Parent 8e4508366e5b19c71b49dfad63f66b750db8bbdf commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698 Author: Bram Moolenaar 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. diff --git a/src/if_perl.xs b/src/if_perl.xs --- 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; diff --git a/src/version.c b/src/version.c --- 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,