fix warning with mingw32ce (getenv not declared)

fix compilation with mingw32ce (EAPI not correctly defined)


SVN revision: 39237
This commit is contained in:
Vincent Torri 2009-02-26 07:08:12 +00:00
parent 2bcea93a7c
commit 648fa70e12
3 changed files with 13 additions and 5 deletions

View File

@ -1,6 +1,11 @@
#ifndef _ECORE_DATA_H
# define _ECORE_DATA_H
/* we need this for size_t */
#include <stddef.h>
#include <Eina.h>
#ifdef EAPI
# undef EAPI
#endif
@ -27,11 +32,6 @@
# endif
#endif /* ! _WIN32 */
/* we need this for size_t */
#include <stddef.h>
#include <Eina.h>
/**
* @file Ecore_Data.h
* @brief Contains threading, list, hash, debugging and tree functions.

View File

@ -11,6 +11,10 @@
#include <stdarg.h>
#include <ctype.h>
#ifdef _WIN32_WCE
# include <Evil.h>
#endif
#include "Ecore.h"
#include "Ecore_Getopt.h"

View File

@ -35,6 +35,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <stdio.h>
#include <string.h>
#ifdef _WIN32_WCE
# include <Evil.h>
#endif
#include "Ecore.h"
#include "Ecore_Data.h"
#include "ecore_private.h"