diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2011-07-10 21:45:47 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2011-07-10 21:45:47 +0000 |
commit | 90dbd29eeadcc23c0450e00acd258933c368da51 (patch) | |
tree | 0d6402f2eafa2bb5695ddc9d47233d33eb4a303b /configure.ac | |
parent | 84a46c34eb9ed6cb1d6b99602fd61e0f52de6b0e (diff) |
again, first part of the fix of compilation of elm_map without ecore_con. elm_map.c must be fixed.
SVN revision: 61216
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 835525559..5b774b92b 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -218,6 +218,15 @@ PKG_CHECK_MODULES([ELEMENTARY], | |||
218 | ] | 218 | ] |
219 | ) | 219 | ) |
220 | 220 | ||
221 | PKG_CHECK_MODULES([ECORE_CON], | ||
222 | [ecore-con], | ||
223 | [ | ||
224 | have_ecore_con="yes" | ||
225 | AC_DEFINE(HAVE_ECORE_CON, 1, [Use Ecore_Con for downloding files]) | ||
226 | requirement_elm="ecore-con ${requirement_elm}" | ||
227 | ], | ||
228 | [have_ecore_con="no"]) | ||
229 | |||
221 | PKG_CHECK_MODULES([EIO], | 230 | PKG_CHECK_MODULES([EIO], |
222 | [eio], | 231 | [eio], |
223 | [ | 232 | [ |