|
From: Enlightenment C. <no...@cv...> - 2008-01-26 05:41:24
|
Enlightenment CVS committal Author : vapier Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_evas Modified Files: ecore_evas_private.h Log Message: replace a lot of win32 ifdef hacks with autoconf checks =================================================================== RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_private.h,v retrieving revision 1.38 retrieving revision 1.39 diff -u -3 -r1.38 -r1.39 --- ecore_evas_private.h 21 Nov 2007 12:16:16 -0000 1.38 +++ ecore_evas_private.h 26 Jan 2008 05:40:52 -0000 1.39 @@ -4,13 +4,17 @@ #ifndef _ECORE_EVAS_PRIVATE_H #define _ECORE_EVAS_PRIVATE_H +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include "Ecore_Data.h" #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> -#ifndef _WIN32 +#ifdef HAVE_SYS_MMAN_H # include <sys/mman.h> #endif |