Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2012-09-01 07:35:12 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-09-01 07:35:12 +0400
commit12190653b2008346d3149d9a32d7e1dff42835d7 (patch)
tree0dc613fae6eb2e6a23126161755c1ed3899a4903
parente91dfa0f7758159af06317b5798911b48776511e (diff)
some doc for --enable-fixed-point and --enable-floating-pointv1.0.1-rc3
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 3a01b54e..0773c376 100644
--- a/configure.ac
+++ b/configure.ac
@@ -154,15 +154,15 @@ has_float_approx=no
ac_enable_fixed="no";
ac_enable_float="yes";
-AC_ARG_ENABLE(fixed-point, [ --enable-fixed-point compile without floating point],
+AC_ARG_ENABLE(fixed-point, [ --enable-fixed-point compile without floating point (for machines without a fast enough FPU)],
[if test "$enableval" = yes; then
ac_enable_fixed="yes";
ac_enable_float="no";
- AC_DEFINE([FIXED_POINT], [1], [Compile as fixed-point])
+ AC_DEFINE([FIXED_POINT], [1], [Compile as fixed-point (for machines without a fast enough FPU)])
else
- AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])
+ AC_DEFINE([FLOATING_POINT], , [Compile as floating-point (for machines with a fast enough FPU)])
fi],
-AC_DEFINE([FLOATING_POINT], , [Compile as floating-point]))
+AC_DEFINE([FLOATING_POINT], , [Compile as floating-point (for machines with a fast enough FPU)]))
ac_enable_fixed_debug="no"
AC_ARG_ENABLE(fixed-point-debug, [ --enable-fixed-point-debug debug fixed-point implementation],