0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

patch 9.0.0477: missing dependency may cause crashes on incomplete build

Problem:    Missing dependency may cause crashes on incomplete build.
Solution:   Add dependency.
This commit is contained in:
Bram Moolenaar
2022-09-16 12:28:34 +01:00
parent 48db5dafec
commit 3e8b7a6056
3 changed files with 8 additions and 1 deletions

View File

@@ -4191,7 +4191,7 @@ objects/vim9type.o: vim9type.c vim.h protodef.h auto/config.h feature.h os_unix.
auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \ auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h libvterm/include/vterm.h \ proto/gui_beval.pro structs.h regexp.h gui.h libvterm/include/vterm.h \
libvterm/include/vterm_keycodes.h alloc.h ex_cmds.h spell.h proto.h \ libvterm/include/vterm_keycodes.h alloc.h ex_cmds.h spell.h proto.h \
globals.h errors.h globals.h errors.h vim9.h
objects/viminfo.o: viminfo.c vim.h protodef.h auto/config.h feature.h os_unix.h \ objects/viminfo.o: viminfo.c vim.h protodef.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \ auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h libvterm/include/vterm.h \ proto/gui_beval.pro structs.h regexp.h gui.h libvterm/include/vterm.h \

View File

@@ -703,6 +703,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 */
/**/
477,
/**/ /**/
476, 476,
/**/ /**/

View File

@@ -20,6 +20,11 @@
# include <float.h> # include <float.h>
#endif #endif
// When not generating protos this is included in proto.h
#ifdef PROTO
# include "vim9.h"
#endif
/* /*
* Allocate memory for a type_T and add the pointer to type_gap, so that it can * Allocate memory for a type_T and add the pointer to type_gap, so that it can
* be easily freed later. * be easily freed later.