From 36972f8ca14aabc0984c0ad87e5d26bac1ce3f15 Mon Sep 17 00:00:00 2001 From: Oskari Timperi Date: Mon, 26 May 2014 09:48:02 +0300 Subject: mingw/msys fixes --- Makefile | 7 +++++++ examples/fileserver.c | 3 ++- src/uvh.c | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 479e14e..322c4a5 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,13 @@ LDFLAGS += CPPFLAGS += -Isrc LDLIBS += -luv +PLATFORM = $(shell uname -s | tr [A-Z] [a-z]) + +ifeq ($(findstring mingw32,$(PLATFORM)),mingw32) +LDLIBS += -lws2_32 -lpsapi -liphlpapi +else +endif + all: libuvh.a examples .PHONY: examples diff --git a/examples/fileserver.c b/examples/fileserver.c index a61af75..9535ba7 100644 --- a/examples/fileserver.c +++ b/examples/fileserver.c @@ -2,7 +2,8 @@ #include #include "../src/sds.h" -#define MAX_PATH 512 +#include + #define MAX_CHUNK 1024 struct fileserver diff --git a/src/uvh.c b/src/uvh.c index d54b44e..48416ee 100644 --- a/src/uvh.c +++ b/src/uvh.c @@ -308,7 +308,7 @@ static void read_cb(uv_stream_t *stream, ssize_t nread, uv_buf_t buf) serverp = container_of(req->req.server, struct uvh_server_private, server); - LOG_DEBUG("read_cb: nread: %zd, buf.len: %zd", nread, buf.len); + LOG_DEBUG("read_cb: nread: %d, buf.len: %d", (int)nread, (int)buf.len); if (nread < 0) { -- cgit v1.2.3