patch 9.1.1977: MS-Windows: missing dependency on optiondefs.h in Make_cyg_ming.mak
Commit: https://github.com/vim/vim/commit/b5cf53b8b145a20de1b01023fa0f440b677d4c45 Author: Christian Brabandt <[email protected]> Date: Sat Dec 13 18:43:27 2025 +0100 patch 9.1.1977: MS-Windows: missing dependency on optiondefs.h in Make_cyg_ming.mak Problem: MS-Windows: missing dependency on optiondefs.h in Mingw and Cygwin Makefile (Mao-Yining) Solution: Update $INCL variable fixes: #18915 Signed-off-by: Christian Brabandt <[email protected]> diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak index bb84cd9c5..9ec5ef8e0 100644 --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -1252,8 +1252,9 @@ nvcmdidxs: nv_cmds.h ########################################################################### INCL = vim.h alloc.h ascii.h ex_cmds.h feature.h errors.h globals.h \ - keymap.h macros.h option.h os_dos.h os_win32.h proto.h regexp.h \ - spell.h structs.h termdefs.h beval.h $(NBDEBUG_INCL) + keymap.h macros.h option.h optiondefs.h os_dos.h os_win32.h \ + proto.h regexp.h spell.h structs.h termdefs.h beval.h \ + $(NBDEBUG_INCL) GUI_INCL = gui.h ifeq ($(DIRECTX),yes) GUI_INCL += gui_dwrite.h diff --git a/src/version.c b/src/version.c index da7c9d60f..5b8802631 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1977, /**/ 1976, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1vUTuV-00DOCo-2w%40256bit.org.
