diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-05-06 06:51:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-05-06 06:51:50 +0200 |
commit | 9c60161888277b84157441666cb59c813b1f85e3 (patch) | |
tree | 46ffdf9f3201194f321f424c73100bb7171cfd2e | |
parent | 1fd3e30ce92117201b170c1ef83280035488fdfa (diff) | |
download | vim-9c60161888277b84157441666cb59c813b1f85e3.zip |
patch 7.4.727
Problem: Cannot build GvimExt with MingW.
Solution: Add -lgdi32. (KF Leong)
-rw-r--r-- | src/GvimExt/Make_ming.mak | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak index 9c383b0b1..d1d060bfa 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 32c1ddeb3..8e4711203 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 727, +/**/ 726, /**/ 725, |