mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 7.4.1240
Problem: Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams)
This commit is contained in:
@@ -52,7 +52,7 @@ gvimext.obj: gvimext.h
|
|||||||
$(cc) $(cflags) -DFEAT_GETTEXT $(cvarsmt) $*.cpp
|
$(cc) $(cflags) -DFEAT_GETTEXT $(cvarsmt) $*.cpp
|
||||||
|
|
||||||
gvimext.res: gvimext.rc
|
gvimext.res: gvimext.rc
|
||||||
$(rc) $(rcflags) $(rcvars) gvimext.rc
|
$(rc) /nologo $(rcflags) $(rcvars) gvimext.rc
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
- if exist gvimext.dll del gvimext.dll
|
- if exist gvimext.dll del gvimext.dll
|
||||||
|
@@ -1294,7 +1294,7 @@ $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
|
|||||||
$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
|
$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
|
||||||
tearoff.bmp vim.ico vim_error.ico \
|
tearoff.bmp vim.ico vim_error.ico \
|
||||||
vim_alert.ico vim_info.ico vim_quest.ico
|
vim_alert.ico vim_info.ico vim_quest.ico
|
||||||
$(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
|
$(RC) /nologo /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
|
||||||
|
|
||||||
iid_ole.c if_ole.h vim.tlb: if_ole.idl
|
iid_ole.c if_ole.h vim.tlb: if_ole.idl
|
||||||
midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \
|
midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
# A very (if not the most) simplistic Makefile for MSVC
|
# A very (if not the most) simplistic Makefile for MSVC
|
||||||
|
|
||||||
CC=cl
|
CC=cl
|
||||||
CFLAGS=/O2
|
CFLAGS=/O2 /nologo
|
||||||
|
|
||||||
tee.exe: tee.obj
|
tee.exe: tee.obj
|
||||||
$(CC) $(CFLAGS) /Fo$@ $**
|
$(CC) $(CFLAGS) /Fo$@ $**
|
||||||
|
@@ -742,6 +742,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1240,
|
||||||
/**/
|
/**/
|
||||||
1239,
|
1239,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user