efreet: fix warning

Commit 0cd59bb1 introduced the use of basename()
which needs libgen.h (hence winsock2.h before) on Windows.

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Vincent Torri 2015-11-07 14:05:56 +01:00 committed by Cedric BAIL
parent 247c860aac
commit 9eef7ae287
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,11 @@
#include <sys/resource.h>
#endif
#ifdef _WIN32
# include <winsock2.h>
# include <libgen.h>
#endif
#include <Eina.h>
#include <Eet.h>
#include <Ecore.h>