neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 55ab76a1c0f63ebb735495a91066cbe01b6d0bb3
parent 9d3370a14429587303d3abe6d4ece71342f5e4b5
Author: James McCoy <jamessan@jamessan.com>
Date:   Sun, 27 Feb 2022 07:49:50 -0500

build: bump minimum version of luv to 1.43.0

This is required for the recent addition of lua loop threading
(luv_set_thread).

Diffstat:
MCMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -387,7 +387,7 @@ include_directories(SYSTEM ${LIBUV_INCLUDE_DIRS}) find_package(Msgpack 1.0.0 REQUIRED) include_directories(SYSTEM ${MSGPACK_INCLUDE_DIRS}) -find_package(LibLUV 1.30.0 REQUIRED) +find_package(LibLUV 1.43.0 REQUIRED) include_directories(SYSTEM ${LIBLUV_INCLUDE_DIRS}) find_package(TreeSitter REQUIRED)