patch 9.0.0496: no good reason to keep supporting Windows-XP
Problem: No good reason to keep supporting Windows-XP.
Solution: Drop Windows-XP support. (Ken Takata, closes #11089)
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index fe393fb..6c00bb2 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -87,10 +87,9 @@
# Set to yes to enable OLE support.
OLE=no
-# Set the default $(WINVER). Use 0x0501 to make it work with WinXP.
+# Set the default $(WINVER). Use 0x0601 to make it work with Windows 7.
ifndef WINVER
-# WINVER = 0x0501
-WINVER = 0x0600
+WINVER = 0x0601
endif
# Set to yes to enable Cscope support.
@@ -1321,7 +1320,7 @@
endif
$(OUTDIR)/iscygpty.o: iscygpty.c $(CUI_INCL)
- $(CC) -c $(CFLAGS) iscygpty.c -o $(OUTDIR)/iscygpty.o -U_WIN32_WINNT -D_WIN32_WINNT=0x0600 -DUSE_DYNFILEID -DENABLE_STUB_IMPL
+ $(CC) -c $(CFLAGS) iscygpty.c -o $@
$(OUTDIR)/main.o: main.c $(INCL) $(CUI_INCL)
$(CC) -c $(CFLAGS) main.c -o $@