changeset 14933:665d9c0fea86 v8.1.0478

patch 8.1.0478: cannot build with perl using MinGW commit https://github.com/vim/vim/commit/65dc12143a0b5040922bdb47c522e93909701a10 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 15 20:11:18 2018 +0200 patch 8.1.0478: cannot build with perl using MinGW Problem: Cannot build with perl using MinGW. Solution: Add -I. (Ken takata, Cesar Romani)
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Oct 2018 20:15:04 +0200
parents 0757a2eb7001
children e28c806cf004
files src/Make_cyg_ming.mak src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -1049,7 +1049,7 @@ auto/if_perl.c:		if_perl.xs typemap
 	     $(PERLTYPEMAP) if_perl.xs -output $@
 
 $(OUTDIR)/if_perl.o:	auto/if_perl.c $(INCL)
-	$(CC) -c $(CFLAGS) auto/if_perl.c -o $(OUTDIR)/if_perl.o
+	$(CC) -c $(CFLAGS) -I. auto/if_perl.c -o $(OUTDIR)/if_perl.o
 
 
 $(OUTDIR)/if_ruby.o:	if_ruby.c $(INCL)
--- a/src/version.c
+++ b/src/version.c
@@ -793,6 +793,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    478,
+/**/
     477,
 /**/
     476,