make ecore module compilable on Windows(tm)

SVN revision: 30605
This commit is contained in:
doursse 2007-07-05 09:51:09 +00:00 committed by doursse
parent 25f684183c
commit 0199c38044
4 changed files with 7 additions and 1 deletions

View File

@ -57,6 +57,8 @@ if test "x$GCC" = "xyes"; then
fi
changequote([,])dnl
AC_HEADER_SYS_WAIT
# define pkg-config requirements for all our submodules.
# only the trivial requirements go here.
requirements_ecore_con=""

View File

@ -1,5 +1,7 @@
#include <locale.h>
#ifndef WIN32
#include <langinfo.h>
#endif /* WIN32 */
#include "ecore_private.h"
#include "Ecore.h"

View File

@ -1,5 +1,7 @@
#include <errno.h>
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif /* HAVE_SYS_WAIT_H */
#include "ecore_private.h"
#include "Ecore.h"

View File

@ -24,7 +24,7 @@
#ifdef EAPI
#undef EAPI
#endif
#ifdef WIN32
#ifdef _MSC_VER
# ifdef BUILDING_DLL
# define EAPI __declspec(dllexport)
# else