From cae8a96c1639f8a1e6335c46b48721b3e76578c8 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Wed, 27 Oct 2010 00:27:26 -0700 Subject: [PATCH] Fix build issues using mingw32 on windows --- http_parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_parser.h b/http_parser.h index d46f442..ca7f562 100644 --- a/http_parser.h +++ b/http_parser.h @@ -26,7 +26,7 @@ extern "C" { #include -#ifdef _WIN32 +#if defined(_WIN32) && !defined(__MINGW32__) typedef __int8 int8_t; typedef unsigned __int8 uint8_t; typedef __int16 int16_t;