efl: Add switch to enable edje-multisense

/vtorri NEWS and ChangeLog

Signed-off-by: Daniel Willmann <d.willmann@samsung.com>

SVN revision: 83381
This commit is contained in:
Daniel Willmann 2013-01-28 15:15:32 +00:00 committed by Daniel Willmann
parent e069b829bf
commit ed92993aab
3 changed files with 17 additions and 1 deletions

View File

@ -376,3 +376,7 @@
2013-01-22 Daniel Willmann <d.willmann@samsung.com>
* Fix evas gif loader to return the correct frame duration
2013-01-28 Daniel Willmann <d.willmann@samsung.com>
* Use ecore_audio in edje-multisense

1
NEWS
View File

@ -85,6 +85,7 @@ Improvements:
* Don't over align data if they are already aligned.
* edje entry: remove ecore_imf_context_reset, cursor update in mouse move event because it's useless.
* edje entry: move ecore_imf_context_cursor_position_set from mouse down event to mouse up event.
* Use ecore_audio in edje-multisense
Fixes:
* Fix PPC (big endian) image codec bug.

View File

@ -3160,6 +3160,17 @@ EFL_LIB_START([Edje])
### Default values
want_multisense="no" # TODO: move to ecore_audio and enable
AC_ARG_ENABLE([multisense],
[AC_HELP_STRING([--enable-multisense],
[Enable multisense support. @<:@default=disabled@:>@])],
[
if test "x${enableval}" = "xyes" ; then
want_multisense="yes"
else
want_multisense="no"
fi
],
[want_multisense="no"])
# TODO: should we keep or remove these?
want_edje_program_cache="no"
@ -3185,7 +3196,7 @@ EFL_INTERNAL_DEPEND_PKG([EDJE], [embryo])
EFL_INTERNAL_DEPEND_PKG([EDJE], [eio])
EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EDJE], [${want_physics}], [ephysics])
#EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EDJE], [${want_multisense}], [ecore-audio])
EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EDJE], [${want_multisense}], [ecore-audio])
EFL_ADD_FEATURE([EDJE], [physics])
EFL_ADD_FEATURE([EDJE], [multisense])