aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-05-25 12:44:03 +0200
committerTakashi Iwai <tiwai@suse.de>2011-05-25 12:44:03 +0200
commitb6a76269e72eb41eaae09e931b33bdd4c958d305 (patch)
treeea9ad622b2d0503968539cb033d80f93f6232bde
parent47aa20e8ca97319b31a006e1fda68d3924c9eca5 (diff)
downloadsalsa-lib-b6a76269e72eb41eaae09e931b33bdd4c958d305.tar.gz
Add document for --enable-float option
Also enabled symbolic-functions as default.
-rw-r--r--README4
-rw-r--r--configure.ac4
2 files changed, 5 insertions, 3 deletions
diff --git a/README b/README
index 21e2b81..c6a54e7 100644
--- a/README
+++ b/README
@@ -92,7 +92,9 @@ The PCM and mixer components are enabled as default, and can be
disabled via --disable-pcm and --disable-mixer option, respectively.
The dB range support can be enabled via --enable-tlv option. It's
-disabled as default.
+disabled as default. For enabling the floating-point math calculation
+used in dB <-> linear conversion for the mixer, pass --enable-float
+option as well.
The async handler support can be enabled via --enable-async option.
It's disabled as default.
diff --git a/configure.ac b/configure.ac
index 36d37fe..a74757e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -107,9 +107,9 @@ AC_ARG_ENABLE(libasound,
delight_valgrind="$enableval", delight_valgrind="yes")
AC_ARG_ENABLE(symbolic-functions,
- AS_HELP_STRING([--enable-symbolic-functions],
+ AS_HELP_STRING([--disable-symbolic-functions],
[use -Bsymbolic-functions option if available (optmization for size and speed)]),
- symfuncs="$enableval", symfuncs="no")
+ symfuncs="$enableval", symfuncs="yes")
AC_ARG_ENABLE(float,
AS_HELP_STRING([--enable-float],