From 08c51aabc43e1617d75fa08ac8865410992feda3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 12 Oct 2011 14:11:45 +0200 Subject: [PATCH] updated for version 7.3.334 Problem: Latest MingW about XSUBPP referencing itself. (Gongqian Li) Solution: Rename the first use to XSUBPPTRY. --- src/Make_ming.mak | 6 +++--- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Make_ming.mak b/src/Make_ming.mak index 5867696ae..bacdb04c7 100644 --- a/src/Make_ming.mak +++ b/src/Make_ming.mak @@ -108,10 +108,10 @@ endif # on NT, it's here: PERLLIB=$(PERL)/lib PERLLIBS=$(PERLLIB)/Core -XSUBPP=$(PERLLIB)/ExtUtils/xsubpp -XSUBPP_EXISTS=$(shell perl -e "print 1 unless -e '$(XSUBPP)'") +XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp +XSUBPP_EXISTS=$(shell perl -e "print 1 unless -e '$(XSUBPPTRY)'") ifeq "$(XSUBPP_EXISTS)" "" -XSUBPP=perl $(XSUBPP) +XSUBPP=perl $(XSUBPPTRY) else XSUBPP=xsubpp endif diff --git a/src/version.c b/src/version.c index c9d6e24f4..f63a90888 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 334, /**/ 333, /**/ -- 2.50.1