summaryrefslogtreecommitdiffstats
path: root/src/GvimExt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-25 19:18:02 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-25 19:18:02 +0100
commit5c829bf229de463657e4ba1de6c4ee91899de14e (patch)
tree14ab7ec4188e5a46614ce6994ec4283d81e0e423 /src/GvimExt
parentab55f11d9bc776d546794748bc62ac47d5340c2e (diff)
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')
-rw-r--r--src/GvimExt/Make_ming.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak
index a6ab3ae10e..8d17142817 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