Bring neovim up to date with recent libuv changes

As of v0.11.23 libuv's uv_timer_cb, uv_async_cb, uv_prepare_cb, uv_check_cb and
uv_idle_cb no longer require a status parameter (this went unused in the first
place).

Bump third-party dependency `libuv` up to 0.11.23 and remove the extra
parameters from the callbacks.
This commit is contained in:
Will Tange
2014-04-09 11:32:42 +02:00
committed by Thiago de Arruda
parent a881273dad
commit ed73da9f0e
4 changed files with 10 additions and 10 deletions

View File

@@ -44,8 +44,8 @@ endif()
include(ExternalProject)
set(LIBUV_URL https://github.com/joyent/libuv/archive/v0.11.22.tar.gz)
set(LIBUV_MD5 d0cb0fea847afa35333ccbda56ed16d4)
set(LIBUV_URL https://github.com/joyent/libuv/archive/v0.11.23.tar.gz)
set(LIBUV_MD5 e02a3da9fba9ebe72a84e4abd312ee4d)
set(MSGPACK_URL https://github.com/msgpack/msgpack-c/releases/download/cpp-0.5.8/msgpack-0.5.8.tar.gz)
set(MSGPACK_MD5 ea0bee0939d2980c0df91f0e4843ccc4)