mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
Changes to compile in Node
This commit is contained in:
parent
d85168b299
commit
c6edabdba8
@ -21,7 +21,7 @@
|
||||
CC = $(PREFIX)gcc
|
||||
AR = $(PREFIX)ar
|
||||
E=
|
||||
CFLAGS=--std=gnu89 -g
|
||||
CFLAGS=--std=gnu89 -g -DEV_MULTIPLICITY=0
|
||||
LINKFLAGS=-lm
|
||||
|
||||
ifeq (SunOS,$(uname_S))
|
||||
@ -29,7 +29,7 @@ LINKFLAGS+=-lsocket -lnsl
|
||||
endif
|
||||
|
||||
# Need _GNU_SOURCE for strdup?
|
||||
RUNNER_CFLAGS=$(CFLAGS) -D_GNU_SOURCE -DEV_MULTIPLICITY=0
|
||||
RUNNER_CFLAGS=$(CFLAGS) -D_GNU_SOURCE
|
||||
|
||||
RUNNER_LINKFLAGS=$(LINKFLAGS) -pthread
|
||||
RUNNER_LIBS=
|
||||
|
6
uv.h
6
uv.h
@ -21,6 +21,9 @@
|
||||
|
||||
#ifndef UV_H
|
||||
#define UV_H
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define UV_VERSION_MAJOR 0
|
||||
#define UV_VERSION_MINOR 1
|
||||
@ -268,4 +271,7 @@ int uv_close(uv_handle_t* handle);
|
||||
/* Utility */
|
||||
struct sockaddr_in uv_ip4_addr(char* ip, int port);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* UV_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user