changeset 20699:85c83b6f1cbc v8.2.0903

patch 8.2.0903: comparing WINVER does not work correctly Commit: https://github.com/vim/vim/commit/852ea366d6432e719ffdd95e9fb7d49a9a960187 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 4 21:32:49 2020 +0200 patch 8.2.0903: comparing WINVER does not work correctly Problem: comparing WINVER does not work correctly. Solution: Use arithmethic expansion. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/6197)
author Bram Moolenaar <Bram@vim.org>
date Thu, 04 Jun 2020 21:45:04 +0200
parents 6796c711aa85
children f1f248c9b90d
files src/Make_cyg_ming.mak src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -625,7 +625,7 @@ endif
 
 ifeq ($(CHANNEL),yes)
 DEFINES += -DFEAT_JOB_CHANNEL -DFEAT_IPV6
- ifeq ($(shell expr "$(WINVER)" \>= 0x600),1)
+ ifeq ($(shell expr "$$(($(WINVER)))" \>= "$$((0x600))"),1)
 DEFINES += -DHAVE_INET_NTOP
  endif
 endif
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    903,
+/**/
     902,
 /**/
     901,