SphinxBase 0.6
config.h
1/* include/sphinx_config.h, defaults for Win32 */
2/* sphinx_config.h: Externally visible configuration parameters for
3 * SphinxBase.
4 */
5
6/* Use ALSA library for sound I/O */
7/* #undef AD_BACKEND_ALSA */
8
9/* Use IRIX interface for sound I/O */
10/* #undef AD_BACKEND_IRIX */
11
12/* No interface for sound I/O */
13/* #undef AD_BACKEND_NONE */
14
15/* Use OSF interface for sound I/O */
16/* #undef AD_BACKEND_OSF */
17
18/* Use OSS interface for sound I/O */
19/* #define AD_BACKEND_OSS */
20
21/* Use OSS interface for sound I/O */
22/* #undef AD_BACKEND_OSS_BSD */
23
24/* Use SunOS interface for sound I/O */
25/* #undef AD_BACKEND_SUNOS */
26
27/* Use WinMM interface for sound I/O */
28#undef AD_BACKEND_WIN32
29
30/* Default radix point for fixed-point */
31/* #undef DEFAULT_RADIX */
32
33/* Enable thread safety */
34#define ENABLE_THREADS
35
36/* The Thread Local Storage class */
37#define SPHINXBASE_TLS __declspec(thread)
38
39/* Use Q15 fixed-point computation */
40/* #undef FIXED16 */
41
42/* Use fixed-point computation */
43/* #undef FIXED_POINT */
44
45/* Enable matrix algebra with LAPACK */
46#define WITH_LAPACK
47
48/* The size of `long', as computed by sizeof. */
49#define SIZEOF_LONG 4
50
51/* Yes, we have errno.h */
52#define HAVE_ERRNO_H 1
53
54/* We don't have popen, but we do have _popen */
55/* #define HAVE_POPEN 1 */
56
57/* We do have perror */
58#define HAVE_PERROR 1
59
60/* We have sys/stat.h */
61#define HAVE_SYS_STAT_H 1
62
63/* We do not have unistd.h. */
64#define YY_NO_UNISTD_H 1
65
66/* Extension for executables */
67#define EXEEXT ".exe"