# HG changeset patch # User Bram Moolenaar # Date 1562876105 -7200 # Node ID 84b9e60ff45966d4dd4db4d5d22dbbc29202a0df # Parent 259134f365468383d01a51af8a4125c412509921 patch 8.1.1662: cannot build uninstal.exe with some version of MinGW commit https://github.com/vim/vim/commit/e28cfb28126c07abd9e9ba04e36b3789433201b6 Author: Bram Moolenaar Date: Thu Jul 11 22:04:21 2019 +0200 patch 8.1.1662: cannot build uninstal.exe with some version of MinGW Problem: Cannot build uninstal.exe with some version of MinGW. Solution: Add -lole32. (Rene Nyffenegger, closes https://github.com/vim/vim/issues/4646) diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -1006,7 +1006,7 @@ install.exe: dosinst.c $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid uninstal.exe: uninstal.c - $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) + $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) -lole32 ifeq ($(VIMDLL),yes) $(TARGET): $(OUTDIR) $(OBJ) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1662, +/**/ 1661, /**/ 1660,