kuuko pushed a commit to branch master.
commit 10ec0a39d8ec801da0a575c0b078d8d4b1379cd7
Author: Kai Huuhko <[email protected]>
Date: Sat Mar 23 14:31:19 2013 +0000
Link directly to evas as well.
---
setup.py | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/setup.py b/setup.py
index e6de931..0feac08 100755
--- a/setup.py
+++ b/setup.py
@@ -86,24 +86,24 @@ else:
efile_cflags, efile_libs = pkg_config('EcoreFile', 'ecore-file', "1.7.99")
ecore_ext = Extension("efl.ecore", ["efl/ecore/efl.ecore.pyx"],
include_dirs = ['include/'],
- extra_compile_args = ecore_cflags + efile_cflags +
eo_cflags + eina_cflags,
- extra_link_args = ecore_libs + efile_libs +
eina_libs)
+ extra_compile_args = ecore_cflags + efile_cflags +
eo_cflags + eina_cflags + evas_cflags,
+ extra_link_args = ecore_libs + efile_libs +
eina_libs + evas_libs)
modules.append(ecore_ext)
# Edje
edje_cflags, edje_libs = pkg_config('Edje', 'edje', "1.7.99")
edje_ext = Extension("efl.edje", ["efl/edje/efl.edje.pyx"],
include_dirs = ['include/'],
- extra_compile_args = edje_cflags + eo_cflags +
eina_cflags,
- extra_link_args = edje_libs + eina_libs)
+ extra_compile_args = edje_cflags + eo_cflags +
eina_cflags + evas_cflags,
+ extra_link_args = edje_libs + eina_libs +
evas_libs)
modules.append(edje_ext)
# Emotion
emotion_cflags, emotion_libs = pkg_config('Emotion', 'emotion', "1.7.99")
emotion_ext = Extension("efl.emotion", ["efl/emotion/efl.emotion.pyx"],
include_dirs = ['include/'],
- extra_compile_args = emotion_cflags + eo_cflags +
eina_cflags,
- extra_link_args = emotion_libs + eina_libs)
+ extra_compile_args = emotion_cflags + eo_cflags +
eina_cflags + evas_cflags,
+ extra_link_args = emotion_libs + eina_libs +
evas_libs)
modules.append(emotion_ext)
# EDBus
@@ -190,8 +190,8 @@ else:
for e in elm_exts:
e.include_dirs = ['include/']
- e.extra_compile_args = elm_cflags + eo_cflags + eina_cflags
- e.extra_link_args = elm_libs + eina_libs
+ e.extra_compile_args = elm_cflags + eo_cflags + eina_cflags +
evas_cflags
+ e.extra_link_args = elm_libs + eina_libs + evas_libs
modules = modules + elm_exts
--
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar