diff options
-rw-r--r-- | configure.ac | 15 | ||||
-rw-r--r-- | src/Makefile_Ecore_Wayland.am | 2 |
2 files changed, 12 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 6186d7bd5a..c65cedb0db 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -2983,9 +2983,16 @@ AC_MSG_NOTICE([Ecore_Wayland checks]) | |||
2983 | 2983 | ||
2984 | ### Checks for libraries | 2984 | ### Checks for libraries |
2985 | 2985 | ||
2986 | ## Evil, Eina, Ecore, Ecore_Input | 2986 | # Evil library for compilation on Windows |
2987 | case "$host_os" in | ||
2988 | mingw*) | ||
2989 | requirements_pc_ecore_wayland="evil >= ${PACKAGE_VERSION} ${requirements_pc_ecore_con}" | ||
2990 | ;; | ||
2991 | esac | ||
2992 | |||
2993 | ## Eina, Ecore, Ecore_Input | ||
2987 | 2994 | ||
2988 | requirements_pc_ecore_wayland="ecore-input >= ${PACKAGE_VERSION} ecore >= ${PACKAGE_VERSION} eina >= ${PACKAGE_VERSION} evil >= ${PACKAGE_VERSION} ${requirements_pc_ecore_wayland}" | 2995 | requirements_pc_ecore_wayland="ecore-input >= ${PACKAGE_VERSION} ecore >= ${PACKAGE_VERSION} eina >= ${PACKAGE_VERSION} ${requirements_pc_ecore_wayland}" |
2989 | 2996 | ||
2990 | ## Wayland | 2997 | ## Wayland |
2991 | 2998 | ||
@@ -3916,14 +3923,14 @@ ECORE_EVAS_CHECK_MODULE_FULL([opengl-sdl], | |||
3916 | # ecore_evas_wayland | 3923 | # ecore_evas_wayland |
3917 | 3924 | ||
3918 | ECORE_EVAS_CHECK_MODULE_FULL([wayland-shm], | 3925 | ECORE_EVAS_CHECK_MODULE_FULL([wayland-shm], |
3919 | [wayland-shm], | 3926 | [${have_evas_engine_wayland_shm}], |
3920 | [${want_ecore_evas_wayland_shm}], | 3927 | [${want_ecore_evas_wayland_shm}], |
3921 | [Wayland Shm], | 3928 | [Wayland Shm], |
3922 | [${have_ecore_wayland}], | 3929 | [${have_ecore_wayland}], |
3923 | [requirements_pc_ecore_evas="ecore-wayland >= ${PACKAGE_VERSION} ${requirements_pc_ecore_evas}"]) | 3930 | [requirements_pc_ecore_evas="ecore-wayland >= ${PACKAGE_VERSION} ${requirements_pc_ecore_evas}"]) |
3924 | 3931 | ||
3925 | ECORE_EVAS_CHECK_MODULE_FULL([wayland-egl], | 3932 | ECORE_EVAS_CHECK_MODULE_FULL([wayland-egl], |
3926 | [wayland-egl egl >= 7.10], | 3933 | [${have_evas_engine_wayland_egl}], |
3927 | [${want_ecore_evas_wayland_egl}], | 3934 | [${want_ecore_evas_wayland_egl}], |
3928 | [Wayland Egl], | 3935 | [Wayland Egl], |
3929 | [${have_ecore_wayland}], | 3936 | [${have_ecore_wayland}], |
diff --git a/src/Makefile_Ecore_Wayland.am b/src/Makefile_Ecore_Wayland.am index f6318492d6..696342fa8d 100644 --- a/src/Makefile_Ecore_Wayland.am +++ b/src/Makefile_Ecore_Wayland.am | |||
@@ -31,7 +31,7 @@ lib_ecore_wayland_libecore_wayland_la_CPPFLAGS = \ | |||
31 | @ECORE_WAYLAND_CFLAGS@ | 31 | @ECORE_WAYLAND_CFLAGS@ |
32 | 32 | ||
33 | lib_ecore_wayland_libecore_wayland_la_LIBADD = \ | 33 | lib_ecore_wayland_libecore_wayland_la_LIBADD = \ |
34 | lib/ecore/libecore_input.la \ | 34 | lib/ecore_input/libecore_input.la \ |
35 | lib/ecore/libecore.la \ | 35 | lib/ecore/libecore.la \ |
36 | lib/eo/libeo.la \ | 36 | lib/eo/libeo.la \ |
37 | lib/eina/libeina.la \ | 37 | lib/eina/libeina.la \ |