Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
windows: fix the MinGW build
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Aug 23, 2012
1 parent e89cb90 commit d62b1ac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/uv-private/uv-win.h
Expand Up @@ -67,6 +67,12 @@ typedef intptr_t ssize_t;
#define SIGKILL 9
#define SIGWINCH 28

/* The CRT defines SIGABRT_COMPAT as 6, which equals SIGABRT on many */
/* unix-like platforms. However MinGW doesn't define it, so we do. */
#ifndef SIGABRT_COMPAT
# define SIGABRT_COMPAT 6
#endif

/*
* Guids and typedefs for winsock extension functions
* Mingw32 doesn't have these :-(
Expand Down

0 comments on commit d62b1ac

Please sign in to comment.