1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/* sphinx_config.h: Externally visible configuration parameters */
/* Define to use fixed-point computation */
#cmakedefine FIXED_POINT
/* Default radix point for fixed-point */
#cmakedefine DEFAULT_RADIX @DEFAULT_RADIX@
/* Define if you have the <stdint.h> header file. */
#ifndef HAVE_STDINT_H
#cmakedefine HAVE_STDINT_H
#endif
/* The size of `long', as computed by sizeof. */
#cmakedefine SIZEOF_LONG @SIZEOF_LONG@
/* Define if the system has the type `long long'. */
#ifndef HAVE_LONG_LONG /* sometimes it is already defined */
#cmakedefine HAVE_LONG_LONG
#endif
/* The size of `long long', as computed by sizeof. */
#cmakedefine SIZEOF_LONG_LONG @SIZEOF_LONG_LONG@
/* Enable debugging output */
#cmakedefine SPHINX_DEBUG
|