aec-manager: Add audio AEC manager
[platform/core/multimedia/pulseaudio-modules-tizen.git] / configure.ac
index ac631fa..d1720a3 100644 (file)
@@ -393,6 +393,18 @@ AC_ARG_ENABLE(acm, AC_HELP_STRING([--enable-acm], [using acm]),
 AM_CONDITIONAL(ENABLE_ACM, test "x$ENABLE_ACM" = "xyes")
 dnl end --------------------------------------------------------------------
 
+dnl use aec ----------------------------------------------------------------
+AC_ARG_ENABLE(aec, AC_HELP_STRING([--enable-aec], [using aec]),
+[
+ case "${enableval}" in
+        yes) ENABLE_AEC=yes ;;
+        no)  ENABLE_AEC=no ;;
+        *)   AC_MSG_ERROR(bad value ${enableval} for --enable-aec) ;;
+ esac
+ ],[USE_AEC=no])
+AM_CONDITIONAL(ENABLE_AEC, test "x$ENABLE_AEC" = "xyes")
+dnl end --------------------------------------------------------------------
+
 #### D-Bus support (optional) ####
 
 AC_ARG_ENABLE([dbus],