Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #865 from mapbox/android-libuv-fix
Browse files Browse the repository at this point in the history
Upgrade to libuv 1.4.0 to fix bug on arm64
  • Loading branch information
Leith Bade committed Feb 12, 2015
2 parents b1c2c91 + acfeda9 commit f6380b8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ case ${MASON_PLATFORM} in
LIBJPEG_VERSION=v9a
OPENSSL_VERSION=1.0.1l
LIBCURL_VERSION=7.40.0
LIBUV_VERSION=0.11.29
LIBUV_VERSION=1.4.0
ZLIB_VERSION=system
BOOST_VERSION=1.57.0
NUNICODE_VERSION=1.5.1
Expand Down
4 changes: 2 additions & 2 deletions include/mbgl/util/uv-messenger.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#ifndef MBGL_UTIL_UV_MESSENGER
#define MBGL_UTIL_UV_MESSENGER

#include <uv.h>

#ifdef __cplusplus
extern "C" {
#endif

#include <uv.h>

typedef struct uv_messenger_s uv_messenger_t;
typedef void (*uv_messenger_cb)(void *arg);
typedef void (*uv_messenger_stop_cb)(uv_messenger_t *msgr);
Expand Down
4 changes: 2 additions & 2 deletions src/mbgl/util/uv-channel.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#ifndef MBGL_UTIL_UV_CHANNEL
#define MBGL_UTIL_UV_CHANNEL

#include <uv.h>

#ifdef __cplusplus
extern "C" {
#endif

#include <uv.h>

// Taken from http://navaneeth.github.io/blog/2013/08/02/channels-in-libuv/

typedef struct uv_chan_s uv_chan_t;
Expand Down
8 changes: 4 additions & 4 deletions src/mbgl/util/uv-worker.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#ifndef MBGL_UTIL_UV_WORKER
#define MBGL_UTIL_UV_WORKER

#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>

#include <mbgl/util/uv-messenger.h>
#include <mbgl/util/uv-channel.h>

#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif

typedef struct uv_worker_s uv_worker_t;

Expand Down

0 comments on commit f6380b8

Please sign in to comment.