diff options
author | Lewis Russell <lewis6991@gmail.com> | 2021-07-05 13:30:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 14:30:50 +0200 |
commit | a6cdfa27d50024a4756df37b135eadb5a8a79f13 (patch) | |
tree | 5780edb991d685fa60ca89707f0bd5fdd6e35d1c /third-party/cmake/BuildLuarocks.cmake | |
parent | f515baedc1eccda5057bd342f18b40fe2fdece71 (diff) | |
download | rneovim-a6cdfa27d50024a4756df37b135eadb5a8a79f13.tar.gz rneovim-a6cdfa27d50024a4756df37b135eadb5a8a79f13.tar.bz2 rneovim-a6cdfa27d50024a4756df37b135eadb5a8a79f13.zip |
chore(deps): bump LibLUV to 1.34.1 and lua-compat-53 to 0.9 (#14985)
This bumps the bundled LibLUV to 1.34.1 in order to make the newly introduced `uv.fs_mkstemp` available in the official builds. (The minimum required version remains at 1.30.1.)
The bump of lua-compat-53 to 0.9 is needed to build with the updated LibLUV.
Diffstat (limited to 'third-party/cmake/BuildLuarocks.cmake')
-rw-r--r-- | third-party/cmake/BuildLuarocks.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake index c5595bf840..a961ec69c7 100644 --- a/third-party/cmake/BuildLuarocks.cmake +++ b/third-party/cmake/BuildLuarocks.cmake @@ -203,7 +203,7 @@ if(USE_BUNDLED_BUSTED) if(USE_BUNDLED_LIBUV) list(APPEND LUV_ARGS LIBUV_DIR=${HOSTDEPS_INSTALL_DIR}) endif() - SET(LUV_PRIVATE_ARGS LUA_COMPAT53_INCDIR=${DEPS_BUILD_DIR}/src/lua-compat-5.3) + SET(LUV_PRIVATE_ARGS LUA_COMPAT53_INCDIR=${DEPS_BUILD_DIR}/src/lua-compat-5.3/c-api) add_custom_command(OUTPUT ${ROCKS_DIR}/luv COMMAND ${LUAROCKS_BINARY} ARGS make ${LUAROCKS_BUILDARGS} ${LUV_ARGS} ${LUV_PRIVATE_ARGS} |