SphinxBase 0.6
sphinx_config.h
1/* include/sphinx_config.h, defaults for S60. */
2/* sphinx_config.h: Externally visible configuration parameters for
3 * SphinxBase.
4 */
5
6/* Use S60 interface for sound I/O */
7#define AD_BACKEND_S60
8
9/* The size of `long', as computed by sizeof. */
10#define SIZEOF_LONG 4
11
12/* Define to 1 if the system has the type `long long'. */
13#define HAVE_LONG_LONG 1
14
15/* The size of `long long', as computed by sizeof. */
16#define SIZEOF_LONG_LONG 8
17
18/* Enable debugging output */
19#undef SPHINX_DEBUG
20
21/* Extension for executables */
22#define EXEEXT ".exe"
23
24/* Enable thread safety */
25#define ENABLE_THREADS 1
26
27/* Define to 1 if you have the <dlfcn.h> header file. */
28#define HAVE_DLFCN_H 1
29
30/* Define to 1 if you have the <inttypes.h> header file. */
31#define HAVE_INTTYPES_H 1
32
33/* Define to 1 if you have the `m' library (-lm). */
34#define HAVE_LIBM 1
35
36/* Define to 1 if you have the `pthread' library (-lpthread). */
37#define HAVE_LIBPTHREAD 1
38
39/* Define to 1 if you have the <memory.h> header file. */
40#define HAVE_MEMORY_H 1
41
42/* Define to 1 if you have the `perror' function. */
43#define HAVE_PERROR 1
44
45/* Define to 1 if you have the `popen' function. */
46#define HAVE_POPEN 1
47
48/* Define to 1 if you have the <pthread.h> header file. */
49#define HAVE_PTHREAD_H 1
50
51/* Define to 1 if you have the `snprintf' function. */
52#define HAVE_SNPRINTF 1
53
54/* Define to 1 if you have the <stdint.h> header file. */
55#define HAVE_STDINT_H 1
56
57/* Define to 1 if you have the <stdlib.h> header file. */
58#define HAVE_STDLIB_H 1
59
60/* Define to 1 if you have the <strings.h> header file. */
61#define HAVE_STRINGS_H 1
62
63/* Define to 1 if you have the <string.h> header file. */
64#define HAVE_STRING_H 1
65
66/* Define to 1 if you have the <sys/stat.h> header file. */
67#define HAVE_SYS_STAT_H 1
68
69/* Define to 1 if you have the <sys/types.h> header file. */
70#define HAVE_SYS_TYPES_H 1
71
72/* Define to 1 if you have the <unistd.h> header file. */
73#define HAVE_UNISTD_H 1
74
75/* Define as the return type of signal handlers (`int' or `void'). */
76#define RETSIGTYPE void
77
78/* Define to 1 if you have the ANSI C header files. */
79#define STDC_HEADERS 1
80
81/* Enable matrix algebra with LAPACK */
82#define WITH_LAPACK 1