SphinxBase 5prealpha
config.h
1/* include/config.h. Generated from config.h.in by configure. */
2/* include/config.h.in. Generated from configure.ac by autoheader. */
3
4/* Define if building universal (internal helper macro) */
5/* #undef AC_APPLE_UNIVERSAL_BUILD */
6
7/* Default radix point for fixed-point */
8/* #undef DEFAULT_RADIX */
9
10/* Enable thread safety */
11#define ENABLE_THREADS
12
13/* Use fixed-point computation */
14/* #undef FIXED_POINT */
15
16/* Define to 1 if you have the <dlfcn.h> header file. */
17#define HAVE_DLFCN_H 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/* #undef HAVE_LIBASOUND */
24
25/* Define to 1 if you have the `flexiblas' library (-lflexiblas). */
26#define HAVE_LIBFLEXIBLAS 1
27
28/* Define to 1 if you have the `m' library (-lm). */
29#define HAVE_LIBM 1
30
31/* Define to 1 if you have the `pthread' library (-lpthread). */
32#define HAVE_LIBPTHREAD 1
33
34/* Define to 1 if you have the `pulse' library (-lpulse). */
35#define HAVE_LIBPULSE 1
36
37/* Define to 1 if you have the `pulse-simple' library (-lpulse-simple). */
38#define HAVE_LIBPULSE_SIMPLE 1
39
40/* Define to 1 if the system has the type `long long'. */
41#define HAVE_LONG_LONG 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/* If available, contains the Python version number currently in use. */
53#define HAVE_PYTHON "3.12"
54
55/* Define to 1 if you have the `snprintf' function. */
56#define HAVE_SNPRINTF 1
57
58/* Define to 1 if you have the <stdint.h> header file. */
59#define HAVE_STDINT_H 1
60
61/* Define to 1 if you have the <stdio.h> header file. */
62#define HAVE_STDIO_H 1
63
64/* Define to 1 if you have the <stdlib.h> header file. */
65#define HAVE_STDLIB_H 1
66
67/* Define to 1 if you have the <strings.h> header file. */
68#define HAVE_STRINGS_H 1
69
70/* Define to 1 if you have the <string.h> header file. */
71#define HAVE_STRING_H 1
72
73/* Define to 1 if you have the <sys/stat.h> header file. */
74#define HAVE_SYS_STAT_H 1
75
76/* Define to 1 if you have the <sys/types.h> header file. */
77#define HAVE_SYS_TYPES_H 1
78
79/* Define to 1 if you have the <unistd.h> header file. */
80#define HAVE_UNISTD_H 1
81
82/* Define to the sub-directory where libtool stores uninstalled libraries. */
83#define LT_OBJDIR ".libs/"
84
85/* Define to the address where bug reports for this package should be sent. */
86#define PACKAGE_BUGREPORT ""
87
88/* Define to the full name of this package. */
89#define PACKAGE_NAME "sphinxbase"
90
91/* Define to the full name and version of this package. */
92#define PACKAGE_STRING "sphinxbase 5prealpha"
93
94/* Define to the one symbol short name of this package. */
95#define PACKAGE_TARNAME "sphinxbase"
96
97/* Define to the home page for this package. */
98#define PACKAGE_URL ""
99
100/* Define to the version of this package. */
101#define PACKAGE_VERSION "5prealpha"
102
103/* Define as the return type of signal handlers (`int' or `void'). */
104#define RETSIGTYPE void
105
106/* The size of `long', as computed by sizeof. */
107#define SIZEOF_LONG 4
108
109/* The size of `long long', as computed by sizeof. */
110#define SIZEOF_LONG_LONG 8
111
112/* Enable debugging output */
113/* #undef SPHINX_DEBUG */
114
115/* Define to 1 if all of the C90 standard headers exist (not just the ones
116 required in a freestanding environment). This macro is provided for
117 backward compatibility; new code need not use it. */
118#define STDC_HEADERS 1
119
120/* Enable matrix algebra with LAPACK */
121#define WITH_LAPACK
122
123/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
124 significant byte first (like Motorola and SPARC, unlike Intel). */
125#if defined AC_APPLE_UNIVERSAL_BUILD
126# if defined __BIG_ENDIAN__
127# define WORDS_BIGENDIAN 1
128# endif
129#else
130# ifndef WORDS_BIGENDIAN
131/* # undef WORDS_BIGENDIAN */
132# endif
133#endif