diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-07-08 15:43:06 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-07-08 15:43:06 +0900 |
commit | 0b8423c961817ec0c1c9ad0f0475ac6ee36a3fb1 (patch) | |
tree | a299d562e7aa57e2480942b9318fff27ba3952b2 /configure.ac | |
parent | fc2c00c67bbae0caa8c00603677d1e115e8433df (diff) |
disable multisense when pulse is disabled too
also.. change "i know what i am doing" option string to "aba"... :)
keep people on their toes.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index faf575a850..cbb10ac5f3 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -3998,7 +3998,7 @@ EFL_LIB_START_OPTIONAL([Edje], [test "x${build_gui}" = "xyes"]) | |||
3998 | ### Additional options to configure | 3998 | ### Additional options to configure |
3999 | 3999 | ||
4000 | ### Default values | 4000 | ### Default values |
4001 | want_multisense="yes" | 4001 | want_multisense="${want_pulseaudio}" |
4002 | AC_ARG_ENABLE([multisense], | 4002 | AC_ARG_ENABLE([multisense], |
4003 | [AS_HELP_STRING([--enable-multisense],[Enable multisense support. @<:@default=enabled@:>@])], | 4003 | [AS_HELP_STRING([--enable-multisense],[Enable multisense support. @<:@default=enabled@:>@])], |
4004 | [ | 4004 | [ |
@@ -4006,9 +4006,10 @@ AC_ARG_ENABLE([multisense], | |||
4006 | want_multisense="yes" | 4006 | want_multisense="yes" |
4007 | else | 4007 | else |
4008 | want_multisense="no" | 4008 | want_multisense="no" |
4009 | CFOPT_WARNING="xyes" | ||
4009 | fi | 4010 | fi |
4010 | ], | 4011 | ], |
4011 | [want_multisense="yes"]) | 4012 | [want_multisense="${want_pulseaudio}"]) |
4012 | 4013 | ||
4013 | if test "x${build_gui}" = "xno"; then | 4014 | if test "x${build_gui}" = "xno"; then |
4014 | want_multisense="no" | 4015 | want_multisense="no" |
@@ -4351,7 +4352,7 @@ AM_CONDITIONAL([ALWAYS_BUILD_EXAMPLES], [test "${want_always_build_examples}" = | |||
4351 | 4352 | ||
4352 | BARF_OK="xno" | 4353 | BARF_OK="xno" |
4353 | # Harfbuzz | 4354 | # Harfbuzz |
4354 | AC_ARG_ENABLE([i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aaa], | 4355 | AC_ARG_ENABLE([i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba], |
4355 | [ You will be told when this is needed ], | 4356 | [ You will be told when this is needed ], |
4356 | [ | 4357 | [ |
4357 | if test "x${enableval}" = "xyes" ; then | 4358 | if test "x${enableval}" = "xyes" ; then |
@@ -4843,6 +4844,15 @@ if test -n "$CFOPT_WARNING"; then | |||
4843 | echo "hurt support for Enlightenment and its filemanager." | 4844 | echo "hurt support for Enlightenment and its filemanager." |
4844 | echo "_____________________________________________________________________" | 4845 | echo "_____________________________________________________________________" |
4845 | fi | 4846 | fi |
4847 | if test "x${want_multisense}" = "xno"; then | ||
4848 | echo "_____________________________________________________________________" | ||
4849 | echo "Multisense has been disabled. This causes Edje audio suport to" | ||
4850 | echo "Simply not work, and will break applications and libraries" | ||
4851 | echo "that rely on it with users then reporting bugs." | ||
4852 | echo "If you want to mute audio, there are APIs and policies to do" | ||
4853 | echo "that, as opposed to compiling it out." | ||
4854 | echo "_____________________________________________________________________" | ||
4855 | fi | ||
4846 | echo "_____________________________________________________________________" | 4856 | echo "_____________________________________________________________________" |
4847 | echo "" | 4857 | echo "" |
4848 | echo "==-- WARNING --==" | 4858 | echo "==-- WARNING --==" |
@@ -4850,7 +4860,7 @@ if test -n "$CFOPT_WARNING"; then | |||
4850 | echo "_____________________________________________________________________" | 4860 | echo "_____________________________________________________________________" |
4851 | if test -n "$BARF_OK"; then | 4861 | if test -n "$BARF_OK"; then |
4852 | echo "Please add the following option to acknowledge this:" | 4862 | echo "Please add the following option to acknowledge this:" |
4853 | echo " --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aaa" | 4863 | echo " --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba" |
4854 | echo "_____________________________________________________________________" | 4864 | echo "_____________________________________________________________________" |
4855 | rm -f Makefile | 4865 | rm -f Makefile |
4856 | exit 1 | 4866 | exit 1 |