efl: Add switch to enable edje-multisense
authorDaniel Willmann <d.willmann@samsung.com>
Mon, 28 Jan 2013 15:15:32 +0000 (15:15 +0000)
committerDaniel Willmann <daniel@totalueberwachung.de>
Mon, 28 Jan 2013 15:15:32 +0000 (15:15 +0000)
/vtorri NEWS and ChangeLog

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

ChangeLog
NEWS
configure.ac

index 58052c8..a9e7833 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 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
diff --git a/NEWS b/NEWS
index c1f0a05..ee96a2a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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.
index 0215d8c..856c037 100644 (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])