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 'blas' library (-lblas). */
26/* #undef HAVE_LIBBLAS */
27
28/* Define to 1 if you have the 'lapack' library (-llapack). */
29/* #undef HAVE_LIBLAPACK */
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 you have the 'pulse' library (-lpulse). */
38#define HAVE_LIBPULSE 1
39
40/* Define to 1 if you have the 'pulse-simple' library (-lpulse-simple). */
41#define HAVE_LIBPULSE_SIMPLE 1
42
43/* Define to 1 if the system has the type 'long long'. */
44#define HAVE_LONG_LONG 1
45
46/* Define to 1 if you have the 'perror' function. */
47#define HAVE_PERROR 1
48
49/* Define to 1 if you have the 'popen' function. */
50#define HAVE_POPEN 1
51
52/* Define to 1 if you have the <pthread.h> header file. */
53#define HAVE_PTHREAD_H 1
54
55/* If available, contains the Python version number currently in use. */
56#define HAVE_PYTHON "3.13"
57
58/* Define to 1 if you have the 'snprintf' function. */
59#define HAVE_SNPRINTF 1
60
61/* Define to 1 if you have the <stdint.h> header file. */
62#define HAVE_STDINT_H 1
63
64/* Define to 1 if you have the <stdio.h> header file. */
65#define HAVE_STDIO_H 1
66
67/* Define to 1 if you have the <stdlib.h> header file. */
68#define HAVE_STDLIB_H 1
69
70/* Define to 1 if you have the <strings.h> header file. */
71#define HAVE_STRINGS_H 1
72
73/* Define to 1 if you have the <string.h> header file. */
74#define HAVE_STRING_H 1
75
76/* Define to 1 if you have the <sys/stat.h> header file. */
77#define HAVE_SYS_STAT_H 1
78
79/* Define to 1 if you have the <sys/types.h> header file. */
80#define HAVE_SYS_TYPES_H 1
81
82/* Define to 1 if you have the <unistd.h> header file. */
83#define HAVE_UNISTD_H 1
84
85/* Define to the sub-directory where libtool stores uninstalled libraries. */
86#define LT_OBJDIR ".libs/"
87
88/* Define to the address where bug reports for this package should be sent. */
89#define PACKAGE_BUGREPORT ""
90
91/* Define to the full name of this package. */
92#define PACKAGE_NAME "sphinxbase"
93
94/* Define to the full name and version of this package. */
95#define PACKAGE_STRING "sphinxbase 5prealpha"
96
97/* Define to the one symbol short name of this package. */
98#define PACKAGE_TARNAME "sphinxbase"
99
100/* Define to the home page for this package. */
101#define PACKAGE_URL ""
102
103/* Define to the version of this package. */
104#define PACKAGE_VERSION "5prealpha"
105
106/* Define as the return type of signal handlers ('int' or 'void'). */
107#define RETSIGTYPE void
108
109/* The size of 'long', as computed by sizeof. */
110#define SIZEOF_LONG 8
111
112/* The size of 'long long', as computed by sizeof. */
113#define SIZEOF_LONG_LONG 8
114
115/* Enable debugging output */
116/* #undef SPHINX_DEBUG */
117
118/* Define to 1 if all of the C89 standard headers exist (not just the ones
119 required in a freestanding environment). This macro is provided for
120 backward compatibility; new code need not use it. */
121#define STDC_HEADERS 1
122
123/* Enable matrix algebra with LAPACK */
124#define WITH_LAPACK
125
126/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
127 significant byte first (like Motorola and SPARC, unlike Intel). */
128#if defined AC_APPLE_UNIVERSAL_BUILD
129# if defined __BIG_ENDIAN__
130# define WORDS_BIGENDIAN 1
131# endif
132#else
133# ifndef WORDS_BIGENDIAN
134/* # undef WORDS_BIGENDIAN */
135# endif
136#endif