diff options
Diffstat (limited to 'deps/uv/Makefile.am')
-rw-r--r-- | deps/uv/Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/deps/uv/Makefile.am b/deps/uv/Makefile.am index 41833c9822..ebcd8db2e2 100644 --- a/deps/uv/Makefile.am +++ b/deps/uv/Makefile.am @@ -51,6 +51,7 @@ libuv_la_SOURCES += src/win/async.c \ src/win/fs-event.c \ src/win/fs.c \ src/win/getaddrinfo.c \ + src/win/getnameinfo.c \ src/win/handle.c \ src/win/handle-inl.h \ src/win/internal.h \ @@ -86,6 +87,7 @@ libuv_la_SOURCES += src/unix/async.c \ src/unix/dl.c \ src/unix/fs.c \ src/unix/getaddrinfo.c \ + src/unix/getnameinfo.c \ src/unix/internal.h \ src/unix/loop-watcher.c \ src/unix/loop.c \ @@ -138,6 +140,7 @@ test_run_tests_SOURCES = test/blackhole-server.c \ test/test-get-loadavg.c \ test/test-get-memory.c \ test/test-getaddrinfo.c \ + test/test-getnameinfo.c \ test/test-getsockname.c \ test/test-hrtime.c \ test/test-idle.c \ @@ -163,6 +166,7 @@ test_run_tests_SOURCES = test/blackhole-server.c \ test/test-pipe-server-close.c \ test/test-platform-output.c \ test/test-poll-close.c \ + test/test-poll-closesocket.c \ test/test-poll.c \ test/test-process-title.c \ test/test-ref.c \ @@ -238,8 +242,10 @@ libuv_la_SOURCES += src/unix/aix.c endif if ANDROID -include_HEADERS += include/android-ifaddrs.h -libuv_la_SOURCES += src/unix/android-ifaddrs.c +include_HEADERS += include/android-ifaddrs.h \ + include/pthread-fixes.h +libuv_la_SOURCES += src/unix/android-ifaddrs.c \ + src/unix/pthread-fixes.c endif if DARWIN |