diff --git a/configure.ac b/configure.ac index c2b2953c2c822a00bec2ad77b8afaf03c27f70bf..0ae21d525d2fedf5dab4eea2bcc561e4e943f3f8 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)