Skip to content

Commit e5ae108

Browse files
committed
patch 8.0.0695: missing dependencies breaks parallel make
Problem: Missing dependencies breaks parallel make. Solution: Add dependencies for terminal.o.
1 parent a34293a commit e5ae108

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

src/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3554,7 +3554,7 @@ objects/option.o: option.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h
35543554
objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
35553555
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
35563556
gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3557-
globals.h farsi.h arabic.h if_mzsch.h os_unixx.h
3557+
globals.h farsi.h arabic.h os_unixx.h
35583558
objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \
35593559
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
35603560
regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
@@ -3603,6 +3603,10 @@ objects/term.o: term.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
36033603
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
36043604
gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
36053605
globals.h farsi.h arabic.h
3606+
objects/terminal.o: terminal.c vim.h auto/config.h feature.h os_unix.h \
3607+
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3608+
regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3609+
proto.h globals.h farsi.h arabic.h
36063610
objects/ui.o: ui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
36073611
keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \
36083612
proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \
@@ -3712,7 +3716,7 @@ objects/json_test.o: json_test.c main.c vim.h auto/config.h feature.h os_unix.h
37123716
objects/kword_test.o: kword_test.c main.c vim.h auto/config.h feature.h os_unix.h \
37133717
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
37143718
regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3715-
proto.h globals.h farsi.h arabic.h charset.c mbyte.c
3719+
proto.h globals.h farsi.h arabic.h charset.c
37163720
objects/memfile_test.o: memfile_test.c main.c vim.h auto/config.h feature.h \
37173721
os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \
37183722
structs.h regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h \
@@ -3732,7 +3736,7 @@ objects/if_lua.o: if_lua.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h
37323736
objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \
37333737
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
37343738
regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3735-
proto.h globals.h farsi.h arabic.h if_mzsch.h mzscheme_base.c
3739+
proto.h globals.h farsi.h arabic.h if_mzsch.h
37363740
objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \
37373741
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
37383742
regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
695,
767769
/**/
768770
694,
769771
/**/

0 commit comments

Comments
 (0)