diff options
| author | Will Tange <bh34rt@gmail.com> | 2014-04-09 11:32:42 +0200 |
|---|---|---|
| committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-14 12:59:55 -0300 |
| commit | ed73da9f0ec532a38f74501985db4bd5c60e5b9d (patch) | |
| tree | e34dbdc1641a53a53e5b3ff4d2d1037ca6a2b756 /third-party | |
| parent | a881273dad5eb5d1f5efa8da79704c9cf9abf0e0 (diff) | |
| download | rneovim-ed73da9f0ec532a38f74501985db4bd5c60e5b9d.tar.gz rneovim-ed73da9f0ec532a38f74501985db4bd5c60e5b9d.tar.bz2 rneovim-ed73da9f0ec532a38f74501985db4bd5c60e5b9d.zip | |
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.
Diffstat (limited to 'third-party')
| -rw-r--r-- | third-party/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third-party/CMakeLists.txt b/third-party/CMakeLists.txt index 3714de660a..f8895f6408 100644 --- a/third-party/CMakeLists.txt +++ b/third-party/CMakeLists.txt @@ -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) |