diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-25 19:18:02 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-25 19:18:02 +0100 |
commit | 5c829bf229de463657e4ba1de6c4ee91899de14e (patch) | |
tree | 14ab7ec4188e5a46614ce6994ec4283d81e0e423 /src/GvimExt/Make_ming.mak | |
parent | ab55f11d9bc776d546794748bc62ac47d5340c2e (diff) | |
download | vim-git-5c829bf229de463657e4ba1de6c4ee91899de14e.tar.gz |
patch 8.2.2408: MinGW: "--preprocessor" flag no longer supportedv8.2.2408
Problem: MinGW: "--preprocessor" flag no longer supported.
Solution: Remove the flag, use the defaults. (Christopher Wellons,
closes #7741)
Diffstat (limited to 'src/GvimExt/Make_ming.mak')
-rw-r--r-- | src/GvimExt/Make_ming.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak index a6ab3ae10..8d1714281 100644 --- a/src/GvimExt/Make_ming.mak +++ b/src/GvimExt/Make_ming.mak @@ -49,8 +49,8 @@ WINVER = 0x0501 endif CXX := $(CROSS_COMPILE)g++ WINDRES := $(CROSS_COMPILE)windres -WINDRES_CXX = $(CXX) -WINDRES_FLAGS = --preprocessor="$(WINDRES_CXX) -E -xc" -DRC_INVOKED +# this used to have --preprocessor, but it's no longer supported +WINDRES_FLAGS = LIBS := -luuid -lgdi32 RES := gvimext.res DEFFILE = gvimext_ming.def |