From 1b974c4ab93055e9fd500396b602d6fab09a6e95 Mon Sep 17 00:00:00 2001 From: Xiao-Long Chen Date: Tue, 16 Sep 2014 00:17:19 -0400 Subject: [PATCH] Don't include windows.h on Cygwin --- libarchive/archive_entry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarchive/archive_entry.h b/libarchive/archive_entry.h index c85b0e9db..ff5350a8e 100644 --- a/libarchive/archive_entry.h +++ b/libarchive/archive_entry.h @@ -43,7 +43,7 @@ #include /* for wchar_t */ #include -#if defined(_WIN32) +#if defined(_WIN32) && !defined(__CYGWIN__) #include #endif -- 2.47.2