From 9fdcbbb4063daa125e420e0ffe9dae6801c264bc Mon Sep 17 00:00:00 2001 From: bfredl Date: Tue, 27 Dec 2022 14:43:03 +0100 Subject: feat(tui): graduate the +tui feature This was previously disabled due to build issues on windows. Any reasonable platform can now be expected to have the necessary interfaces to build and run the TUI subsystem. Runtime quality issues of using the TUI (on any new platform) are not relevant here. Just run Nvim in an external UI instead of the TUI as always. --- cmake.config/config.h.in | 2 -- 1 file changed, 2 deletions(-) (limited to 'cmake.config/config.h.in') diff --git a/cmake.config/config.h.in b/cmake.config/config.h.in index 59be83fb5e..283a1d0c47 100644 --- a/cmake.config/config.h.in +++ b/cmake.config/config.h.in @@ -56,8 +56,6 @@ #endif #cmakedefine HAVE_FORKPTY -#cmakedefine FEAT_TUI - #ifndef UNIT_TESTING #cmakedefine LOG_LIST_ACTIONS #endif -- cgit From 5322bf99e6d5247370d282d9013381bf98b5b832 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 2 Jan 2023 20:37:13 +0800 Subject: vim-patch:8.2.0711: temp directory might be cleared (#21614) Problem: With a long running Vim the temp directory might be cleared on some systems. Solution: Lock the temp directory. (closes vim/vim#6044) https://github.com/vim/vim/commit/b2d0e51366dea6843f991f31a457f5456d162678 --- cmake.config/config.h.in | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmake.config/config.h.in') diff --git a/cmake.config/config.h.in b/cmake.config/config.h.in index 283a1d0c47..f946fa6124 100644 --- a/cmake.config/config.h.in +++ b/cmake.config/config.h.in @@ -54,6 +54,8 @@ # undef HAVE_SYS_UIO_H # endif #endif +#cmakedefine HAVE_DIRFD +#cmakedefine HAVE_FLOCK #cmakedefine HAVE_FORKPTY #ifndef UNIT_TESTING -- cgit From f08051c2e61f63b2088a42d641393253b8ca1ca1 Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Mon, 23 Jan 2023 16:33:45 +0000 Subject: feat!: make iconv a non-optional dep --- cmake.config/config.h.in | 1 - 1 file changed, 1 deletion(-) (limited to 'cmake.config/config.h.in') diff --git a/cmake.config/config.h.in b/cmake.config/config.h.in index f946fa6124..c8377bf45c 100644 --- a/cmake.config/config.h.in +++ b/cmake.config/config.h.in @@ -24,7 +24,6 @@ #cmakedefine HAVE_GETPWENT #cmakedefine HAVE_GETPWNAM #cmakedefine HAVE_GETPWUID -#cmakedefine HAVE_ICONV #cmakedefine HAVE_LANGINFO_H #cmakedefine HAVE_LOCALE_H #cmakedefine HAVE_NL_LANGINFO_CODESET -- cgit