add first part of the ecore_con support. elm_map.c must be fixed.

SVN revision: 61193
This commit is contained in:
Vincent Torri 2011-07-10 09:00:57 +00:00
parent 2e1a80fd31
commit 2e130b0de9
2 changed files with 19 additions and 1 deletions

View File

@ -218,6 +218,17 @@ PKG_CHECK_MODULES([ELEMENTARY],
]
)
PKG_CHECK_MODULES([ECORE_CON],
[ecore-con],
[
have_ecore_con="yes"
AC_DEFINE(HAVE_ECORE_CON, 1, [Use Ecore_Con for connections])
requirement_elm="ecore-con ${requirement_elm}"
],
[have_ecore_con="no"])
AM_CONDITIONAL([HAVE_ECORE_CON], [test "x${have_ecore_con}" = "xyes"])
PKG_CHECK_MODULES([EIO],
[eio],
[

View File

@ -1,4 +1,11 @@
#include <Ecore_Con.h>
#ifdef HAVE_CONFIG
# include <elementary_config.h>
#endif
#ifdef HAVE_ECORE_CON
# include <Ecore_Con.h>
#endif
#include "Elementary.h"
#include "elm_priv.h"