git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@61193
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
]
)
+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],
[
-#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"