From 9c60161888277b84157441666cb59c813b1f85e3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 6 May 2015 06:51:50 +0200 Subject: [PATCH] patch 7.4.727 Problem: Cannot build GvimExt with MingW. Solution: Add -lgdi32. (KF Leong) --- src/GvimExt/Make_ming.mak | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak index 9c383b0b1f..d1d060bfac 100644 --- a/src/GvimExt/Make_ming.mak +++ b/src/GvimExt/Make_ming.mak @@ -47,7 +47,7 @@ CXX := $(CROSS_COMPILE)g++ WINDRES := $(CROSS_COMPILE)windres WINDRES_CXX = $(CXX) WINDRES_FLAGS = --preprocessor="$(WINDRES_CXX) -E -xc" -DRC_INVOKED -LIBS := -luuid +LIBS := -luuid -lgdi32 RES := gvimext.res DEFFILE = gvimext_ming.def OBJ := gvimext.o diff --git a/src/version.c b/src/version.c index 32c1ddeb31..8e47112039 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 */ +/**/ + 727, /**/ 726, /**/