Skip to content

Commit e28cfb2

Browse files
committed
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 #4646)
1 parent 247bf0d commit e28cfb2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/Make_cyg_ming.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ install.exe: dosinst.c
10061006
$(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid
10071007

10081008
uninstal.exe: uninstal.c
1009-
$(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB)
1009+
$(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) -lole32
10101010

10111011
ifeq ($(VIMDLL),yes)
10121012
$(TARGET): $(OUTDIR) $(OBJ)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,8 @@ static char *(features[]) =
777777

778778
static int included_patches[] =
779779
{ /* Add new patch number below this line */
780+
/**/
781+
1662,
780782
/**/
781783
1661,
782784
/**/

0 commit comments

Comments
 (0)