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

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-03-12 03:47:19 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-03-12 03:47:19 +0300
commit980ad38495fa0bfdccdda3e28c73e8b793a7a781 (patch)
tree2527f0b2b5a41838111c919863de629644052757 /configure.ac
parent931db72e75ea295ed57565bccfdf001277da98b4 (diff)
configure update (MIXED_PRECISION and STATIC_MODES can now be used)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c2b2953..0ae21d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -92,6 +92,7 @@ AC_ARG_ENABLE(fixed-point, [ --enable-fixed-point Compile as fixed-point],
[if test "$enableval" = yes; then
AC_DEFINE([FIXED_POINT], , [Compile as fixed-point])
AC_DEFINE([DOUBLE_PRECISION], , [Compile as fixed-point])
+ AC_DEFINE([MIXED_PRECISION], , [Compile as fixed-point])
else
AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])
fi],
@@ -102,6 +103,11 @@ AC_ARG_ENABLE(fixed-point-debug, [ --enable-fixed-point-debug Debug fixed-poin
AC_DEFINE([FIXED_DEBUG], , [Debug fixed-point implementation])
fi])
+AC_ARG_ENABLE(static-modes, [ --enable-static-modes],
+[if test "$enableval" = yes; then
+ AC_DEFINE([STATIC_MODES], , [Static modes])
+fi])
+
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)