Fixed cygwin compilation

This commit is contained in:
Daniel Marjamäki 2014-03-22 09:57:43 +01:00
parent 7cc2595a7b
commit fbd607d35d
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
#include <algorithm>
#include <climits>
#if defined(__GNUC__) && !defined(__MINGW32__)
#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
#define USE_UNIX_SIGNAL_HANDLING
#include <execinfo.h>
#include <cxxabi.h>
@ -43,7 +43,7 @@
#include <cstdio>
#endif
#if defined(_MSC_VER) && !defined(__MINGW32__)
#if defined(_MSC_VER)
#define USE_WINDOWS_SEH
#include <Windows.h>
#include <excpt.h>