comparison src/Make_cyg_ming.mak @ 30320:0763cb330a65 v9.0.0496

patch 9.0.0496: no good reason to keep supporting Windows-XP Commit: https://github.com/vim/vim/commit/27b53be3a6a340f1858bcd31233fe2efc86f8e15 Author: K.Takata <kentkt@csc.jp> Date: Sun Sep 18 12:25:49 2022 +0100 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 https://github.com/vim/vim/issues/11089)
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Sep 2022 13:30:05 +0200
parents ba9d53c7c509
children 425b686c5244
comparison
equal deleted inserted replaced
30319:54c55ede50e5 30320:0763cb330a65
85 POSTSCRIPT=no 85 POSTSCRIPT=no
86 86
87 # Set to yes to enable OLE support. 87 # Set to yes to enable OLE support.
88 OLE=no 88 OLE=no
89 89
90 # Set the default $(WINVER). Use 0x0501 to make it work with WinXP. 90 # Set the default $(WINVER). Use 0x0601 to make it work with Windows 7.
91 ifndef WINVER 91 ifndef WINVER
92 # WINVER = 0x0501 92 WINVER = 0x0601
93 WINVER = 0x0600
94 endif 93 endif
95 94
96 # Set to yes to enable Cscope support. 95 # Set to yes to enable Cscope support.
97 CSCOPE=yes 96 CSCOPE=yes
98 97
1319 ifeq (16, $(RUBY)) 1318 ifeq (16, $(RUBY))
1320 $(CC) $(CFLAGS) -U_WIN32 -c -o $@ if_ruby.c 1319 $(CC) $(CFLAGS) -U_WIN32 -c -o $@ if_ruby.c
1321 endif 1320 endif
1322 1321
1323 $(OUTDIR)/iscygpty.o: iscygpty.c $(CUI_INCL) 1322 $(OUTDIR)/iscygpty.o: iscygpty.c $(CUI_INCL)
1324 $(CC) -c $(CFLAGS) iscygpty.c -o $(OUTDIR)/iscygpty.o -U_WIN32_WINNT -D_WIN32_WINNT=0x0600 -DUSE_DYNFILEID -DENABLE_STUB_IMPL 1323 $(CC) -c $(CFLAGS) iscygpty.c -o $@
1325 1324
1326 $(OUTDIR)/main.o: main.c $(INCL) $(CUI_INCL) 1325 $(OUTDIR)/main.o: main.c $(INCL) $(CUI_INCL)
1327 $(CC) -c $(CFLAGS) main.c -o $@ 1326 $(CC) -c $(CFLAGS) main.c -o $@
1328 1327
1329 $(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC) 1328 $(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC)