From 47cff3a444be7e99bae52b39b2174c22d58d2f86 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 7 Mar 2016 20:58:50 +0100 Subject: [PATCH] patch 7.4.1508 Problem: Can't build GvimExt with MingW. Solution: Adjust the makefile. (Ben Fritz) --- src/GvimExt/Make_ming.mak | 6 +++++- src/version.c | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak index 2976ea05c..a6ab3ae10 100644 --- a/src/GvimExt/Make_ming.mak +++ b/src/GvimExt/Make_ming.mak @@ -43,6 +43,10 @@ else DEL = del endif endif +# Set the default $(WINVER) to make it work with WinXP. +ifndef WINVER +WINVER = 0x0501 +endif CXX := $(CROSS_COMPILE)g++ WINDRES := $(CROSS_COMPILE)windres WINDRES_CXX = $(CXX) @@ -68,7 +72,7 @@ $(DLL): $(OBJ) $(RES) $(DEFFILE) $(LIBS) gvimext.o: gvimext.cpp - $(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -c $? -o $@ + $(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) -c $? -o $@ $(RES): gvimext_ming.rc $(WINDRES) $(WINDRES_FLAGS) --input-format=rc --output-format=coff -DMING $? -o $@ diff --git a/src/version.c b/src/version.c index 40690ec80..c4012e265 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1508, /**/ 1507, /**/ -- 2.50.1