tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0985ec1cac1fa35280a1e7c441c6db4a4df26399

commit 0985ec1cac1fa35280a1e7c441c6db4a4df26399
Author: Vincent Torri <vincent.to...@gmail.com>
Date:   Tue Jul 7 13:48:50 2015 +0200

    Ecore Anim: fix compilation on Windows
    
    sys/select.h is not available on Windows
---
 src/lib/ecore/ecore_anim.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/lib/ecore/ecore_anim.c b/src/lib/ecore/ecore_anim.c
index 46d4e91..020e426 100644
--- a/src/lib/ecore/ecore_anim.c
+++ b/src/lib/ecore/ecore_anim.c
@@ -8,8 +8,6 @@
 #include <string.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <sys/select.h>
-#include <fcntl.h>
 
 #ifdef _WIN32
 
@@ -22,7 +20,7 @@
 
 #else
 
-# include <unistd.h>
+# include <sys/select.h>
 # include <fcntl.h>
 
 # define pipe_write(fd, buffer, size) write((fd), buffer, size)

-- 


Reply via email to