From 366ab7acf049f07adcf389c30645b80632c35420 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Fri, 17 Dec 2010 17:00:57 +0000 Subject: [PATCH] vc++ does not like unistd.h. Actually, maybe we should check some non standard headers in configure.ac and guard them appropriately SVN revision: 55613 --- legacy/evas/src/lib/canvas/evas_async_events.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_async_events.c b/legacy/evas/src/lib/canvas/evas_async_events.c index 93f0f50ae6..a88620d467 100644 --- a/legacy/evas/src/lib/canvas/evas_async_events.c +++ b/legacy/evas/src/lib/canvas/evas_async_events.c @@ -3,7 +3,9 @@ #ifdef BUILD_ASYNC_EVENTS -#include +#ifndef _MSC_VER +# include +#endif #include #include