1
0
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:
Ryan Dahl 2011-05-13 00:47:10 -07:00
parent d85168b299
commit c6edabdba8
2 changed files with 8 additions and 2 deletions

View File

@ -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
View File

@ -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 */