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 58052c832852ffd03468ca38d3c7266667f7faa1..a9e7833e3ed7f8408b76fe36e4b75a745afa9908 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 c1f0a05d664a1a1f52ba4bc2dd7a3a86583790d5..ee96a2a36fe38d0a5111b7523359dfa4f885b29e 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 0215d8ccda1874e9d303600072e03ab1709e0eb2..856c037e7cfe4e4c3fc16e00f2dfa07223638db3 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])