Skip to content

Commit ecdd89f

Browse files
mao-yiningchrisbra
authored andcommitted
patch 9.1.1735: Cygwin Makefile still checks for Win XP version
Problem: Cygwin Makefile still checks for Win XP version Solution: Remove check for WINVER >= 0x600 in Make_cyg_ming.mak (Mao-Yining) Vim's does no longer support Windows XP and Vista since v9.0.0496. So the condition in Make_cyg_ming.mak to check for any Windows version below Vista can be removed. fixes: #18160 closes: #18215 Signed-off-by: Mao-Yining <mao.yining@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 39acad4 commit ecdd89f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Make_cyg_ming.mak

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,9 +665,7 @@ endif
665665

666666
ifeq ($(CHANNEL),yes)
667667
DEFINES += -DFEAT_JOB_CHANNEL -DFEAT_IPV6
668-
ifeq ($(shell expr "$$(($(WINVER)))" \>= "$$((0x600))"),1)
669668
DEFINES += -DHAVE_INET_NTOP
670-
endif
671669
endif
672670

673671
ifeq ($(TERMINAL),yes)

src/version.c

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

725725
static int included_patches[] =
726726
{ /* Add new patch number below this line */
727+
/**/
728+
1735,
727729
/**/
728730
1734,
729731
/**/

0 commit comments

Comments
 (0)