From 1864e76ea7323fd8789d9c8b5b3c8ca27d4840a6 Mon Sep 17 00:00:00 2001 From: Michael Grunder Date: Fri, 10 Jul 2020 12:53:52 -0700 Subject: Some Windows quality of life improvments. (#846) * Don't try to ignore SIGPIPE in Windows (it doesn't exist). * Add an include to our win32.h compatibility header. * Enable building examples on Travis in Windows. See #831 --- examples/example-libev.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples/example-libev.c') diff --git a/examples/example-libev.c b/examples/example-libev.c index cc8b166..ec47430 100644 --- a/examples/example-libev.c +++ b/examples/example-libev.c @@ -33,7 +33,9 @@ void disconnectCallback(const redisAsyncContext *c, int status) { } int main (int argc, char **argv) { +#ifndef _WIN32 signal(SIGPIPE, SIG_IGN); +#endif redisAsyncContext *c = redisAsyncConnect("127.0.0.1", 6379); if (c->err) { -- cgit v1.2.3