diff options
author | MinJeong Kim <minjjj.kim@samsung.com> | 2014-08-01 14:25:52 +0200 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2014-08-01 14:25:52 +0200 |
commit | 43c9e896a7c68a2746582939e8f6592230106b24 (patch) | |
tree | c2ea4e75cea61f0214dd157acf65f22a8c4e6e9f /configure.ac | |
parent | 0e330cfbe4979ccb395cc32d004081ea2155f500 (diff) |
build/drm: Fix missing ecore-drm for evas_drm engine
Summary:
With removing of pkgconfig checking on EVAS_CHECK_ENGINE for drm,
evas_drm engine need to setup libs including internal ecore-drm.
But, the evas_drm engine have missed ecore-drm libs because it have been
done after finishing setup library of evas.
This revision moves setup dependendency for ecore-drm into proper place.
Test Plan:
1. Build EFL with --enable-drm
2. ELM_ENGINE=drm E_WL_FORCE=wayland_shm enlightement_start
Reviewers: gwanglim, devilhorns, stefan_schmidt
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D1249
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9b5cc63046..cf56eb72b2 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -3617,8 +3617,7 @@ ECORE_EVAS_MODULE([extn], [${want_ecore_evas_extn}]) | |||
3617 | ECORE_EVAS_MODULE([ews], [yes]) | 3617 | ECORE_EVAS_MODULE([ews], [yes]) |
3618 | ECORE_EVAS_MODULE([fb], [${want_fb}]) | 3618 | ECORE_EVAS_MODULE([fb], [${want_fb}]) |
3619 | ECORE_EVAS_MODULE([drm], [${want_drm}], | 3619 | ECORE_EVAS_MODULE([drm], [${want_drm}], |
3620 | [ EFL_OPTIONAL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [${want_drm}], [ecore-drm]) | 3620 | [EFL_OPTIONAL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [${want_drm}], [ecore-drm])] |
3621 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EVAS], [${want_drm}], [ecore-drm]) ] | ||
3622 | ) | 3621 | ) |
3623 | ECORE_EVAS_MODULE([psl1ght], [${have_ps3}]) | 3622 | ECORE_EVAS_MODULE([psl1ght], [${have_ps3}]) |
3624 | 3623 | ||