SphinxBase 5prealpha
config.h
1/* include/config.h. Generated from config.h.in by configure. */
2/* include/config.h.in. Generated from configure.in by autoheader. */
3
4/* Default radix point for fixed-point */
5/* #undef DEFAULT_RADIX */
6
7/* Enable thread safety */
8#define ENABLE_THREADS
9
10/* Use fixed-point computation */
11/* #undef FIXED_POINT */
12
13/* Define to 1 if you have the <dlfcn.h> header file. */
14#define HAVE_DLFCN_H 1
15
16/* Define if you have the iconv() function. */
17/* #define HAVE_ICONV 1 */
18
19/* Define to 1 if you have the <inttypes.h> header file. */
20#define HAVE_INTTYPES_H 1
21
22/* Define to 1 if you have the `asound' library (-lasound). */
23/* #define HAVE_LIBASOUND 1 */
24
25/* Define to 1 if you have the `blas' library (-lblas). */
26/* #define HAVE_LIBBLAS 1 */
27
28/* Define to 1 if you have the `lapack' library (-llapack). */
29/* #define HAVE_LIBLAPACK 1 */
30
31/* Define to 1 if you have the `m' library (-lm). */
32#define HAVE_LIBM 1
33
34/* Define to 1 if you have the `pthread' library (-lpthread). */
35#define HAVE_LIBPTHREAD 1
36
37/* Define to 1 if the system has the type `long long'. */
38#define HAVE_LONG_LONG 1
39
40/* Define to 1 if you have the <memory.h> header file. */
41#define HAVE_MEMORY_H 1
42
43/* Define to 1 if you have the `perror' function. */
44#define HAVE_PERROR 1
45
46/* Define to 1 if you have the `popen' function. */
47#define HAVE_POPEN 1
48
49/* Define to 1 if you have the <pthread.h> header file. */
50#define HAVE_PTHREAD_H 1
51
52/* Define to 1 if you have the `snprintf' function. */
53#define HAVE_SNPRINTF 1
54
55/* Define to 1 if you have the <stdint.h> header file. */
56#define HAVE_STDINT_H 1
57
58/* Define to 1 if you have the <stdlib.h> header file. */
59#define HAVE_STDLIB_H 1
60
61/* Define to 1 if you have the <strings.h> header file. */
62#define HAVE_STRINGS_H 1
63
64/* Define to 1 if you have the <string.h> header file. */
65#define HAVE_STRING_H 1
66
67/* Define to 1 if you have the <sys/stat.h> header file. */
68#define HAVE_SYS_STAT_H 1
69
70/* Define to 1 if you have the <sys/types.h> header file. */
71#define HAVE_SYS_TYPES_H 1
72
73/* Define to 1 if you have the <unistd.h> header file. */
74#define HAVE_UNISTD_H 1
75
76/* Define as const if the declaration of iconv() needs const. */
77#define ICONV_CONST
78
79/* Define to the sub-directory in which libtool stores uninstalled libraries.
80 */
81#define LT_OBJDIR ".libs/"
82
83/* Define as the return type of signal handlers (`int' or `void'). */
84#define RETSIGTYPE void
85
86/* The size of `long', as computed by sizeof. */
87#define SIZEOF_LONG 8
88
89/* The size of `long long', as computed by sizeof. */
90#define SIZEOF_LONG_LONG 8
91
92/* Enable debugging output */
93/* #undef SPHINX_DEBUG */
94
95/* Define to 1 if you have the ANSI C header files. */
96#define STDC_HEADERS 1
97
98/* Enable matrix algebra with LAPACK */
99/* #define WITH_LAPACK */
100
101/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
102 significant byte first (like Motorola and SPARC, unlike Intel). */
103#if defined AC_APPLE_UNIVERSAL_BUILD
104# if defined __BIG_ENDIAN__
105# define WORDS_BIGENDIAN 1
106# endif
107#else
108# ifndef WORDS_BIGENDIAN
109/* # undef WORDS_BIGENDIAN */
110# endif
111#endif