blob: 046763425bac323481b9fbdd59dc30360c73cc74 [file] [log] [blame]
Elliott Hughesaf8bb902018-06-26 16:57:59 -07001/* config.h.in. Generated from configure.ac by autoheader. */
2
3/* Define if building universal (internal helper macro) */
4#undef AC_APPLE_UNIVERSAL_BUILD
5
6/* Make use of ARM4 assembly optimizations */
7#undef ARM4_ASM
8
9/* Make use of ARM5E assembly optimizations */
10#undef ARM5E_ASM
11
12/* Make use of Blackfin assembly optimizations */
13#undef BFIN_ASM
14
15/* Disable all parts of the API that are using floats */
16#undef DISABLE_FLOAT_API
17
18/* Enable valgrind extra checks */
19#undef ENABLE_VALGRIND
20
21/* Symbol visibility prefix */
22#undef EXPORT
23
24/* Debug fixed-point implementation */
25#undef FIXED_DEBUG
26
27/* Compile as fixed-point */
28#undef FIXED_POINT
29
30/* Compile as floating-point */
31#undef FLOATING_POINT
32
33/* Define to 1 if you have the <alloca.h> header file. */
34#undef HAVE_ALLOCA_H
35
36/* Define to 1 if you have the <dlfcn.h> header file. */
37#undef HAVE_DLFCN_H
38
39/* Define to 1 if you have the <getopt.h> header file. */
40#undef HAVE_GETOPT_H
41
42/* Define to 1 if you have the <inttypes.h> header file. */
43#undef HAVE_INTTYPES_H
44
45/* Define to 1 if you have the <memory.h> header file. */
46#undef HAVE_MEMORY_H
47
48/* Define to 1 if you have the <stdint.h> header file. */
49#undef HAVE_STDINT_H
50
51/* Define to 1 if you have the <stdlib.h> header file. */
52#undef HAVE_STDLIB_H
53
54/* Define to 1 if you have the <strings.h> header file. */
55#undef HAVE_STRINGS_H
56
57/* Define to 1 if you have the <string.h> header file. */
58#undef HAVE_STRING_H
59
60/* Define to 1 if you have the <sys/audioio.h> header file. */
61#undef HAVE_SYS_AUDIOIO_H
62
63/* Define to 1 if you have the <sys/soundcard.h> header file. */
64#undef HAVE_SYS_SOUNDCARD_H
65
66/* Define to 1 if you have the <sys/stat.h> header file. */
67#undef HAVE_SYS_STAT_H
68
69/* Define to 1 if you have the <sys/types.h> header file. */
70#undef HAVE_SYS_TYPES_H
71
72/* Define to 1 if you have the <unistd.h> header file. */
73#undef HAVE_UNISTD_H
74
75/* Define to the sub-directory in which libtool stores uninstalled libraries.
76 */
77#undef LT_OBJDIR
78
79/* Define to the address where bug reports for this package should be sent. */
80#undef PACKAGE_BUGREPORT
81
82/* Define to the full name of this package. */
83#undef PACKAGE_NAME
84
85/* Define to the full name and version of this package. */
86#undef PACKAGE_STRING
87
88/* Define to the one symbol short name of this package. */
89#undef PACKAGE_TARNAME
90
91/* Define to the home page for this package. */
92#undef PACKAGE_URL
93
94/* Define to the version of this package. */
95#undef PACKAGE_VERSION
96
97/* Resample with full SINC table (no interpolation) */
98#undef RESAMPLE_FULL_SINC_TABLE
99
100/* The size of `int', as computed by sizeof. */
101#undef SIZEOF_INT
102
103/* The size of `int16_t', as computed by sizeof. */
104#undef SIZEOF_INT16_T
105
106/* The size of `int32_t', as computed by sizeof. */
107#undef SIZEOF_INT32_T
108
109/* The size of `long', as computed by sizeof. */
110#undef SIZEOF_LONG
111
112/* The size of `short', as computed by sizeof. */
113#undef SIZEOF_SHORT
114
115/* The size of `uint16_t', as computed by sizeof. */
116#undef SIZEOF_UINT16_T
117
118/* The size of `uint32_t', as computed by sizeof. */
119#undef SIZEOF_UINT32_T
120
121/* The size of `u_int16_t', as computed by sizeof. */
122#undef SIZEOF_U_INT16_T
123
124/* The size of `u_int32_t', as computed by sizeof. */
125#undef SIZEOF_U_INT32_T
126
127/* Define to 1 if you have the ANSI C header files. */
128#undef STDC_HEADERS
129
130/* Enable support for TI C55X DSP */
131#undef TI_C55X
132
133/* Make use of alloca */
134#undef USE_ALLOCA
135
136/* Use FFTW3 for FFT */
137#undef USE_GPL_FFTW3
138
139/* Use Intel Math Kernel Library for FFT */
140#undef USE_INTEL_MKL
141
142/* Use KISS Fast Fourier Transform */
143#undef USE_KISS_FFT
144
145/* Use FFT from OggVorbis */
146#undef USE_SMALLFT
147
148/* Use C99 variable-size arrays */
149#undef VAR_ARRAYS
150
151/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
152 significant byte first (like Motorola and SPARC, unlike Intel). */
153#if defined AC_APPLE_UNIVERSAL_BUILD
154# if defined __BIG_ENDIAN__
155# define WORDS_BIGENDIAN 1
156# endif
157#else
158# ifndef WORDS_BIGENDIAN
159# undef WORDS_BIGENDIAN
160# endif
161#endif
162
163/* Enable NEON support */
164#undef _USE_NEON
165
166/* Enable SSE support */
167#undef _USE_SSE
168
169/* Enable SSE2 support */
170#undef _USE_SSE2
171
172/* Define to empty if `const' does not conform to ANSI C. */
173#undef const
174
175/* Define to `__inline__' or `__inline' if that's what the C compiler
176 calls it, or to nothing if 'inline' is not supported under any name. */
177#ifndef __cplusplus
178#undef inline
179#endif
180
181/* Define to the equivalent of the C99 'restrict' keyword, or to
182 nothing if this is not supported. Do not define if restrict is
183 supported directly. */
184#undef restrict
185/* Work around a bug in Sun C++: it does not support _Restrict or
186 __restrict__, even though the corresponding Sun C compiler ends up with
187 "#define restrict _Restrict" or "#define restrict __restrict__" in the
188 previous line. Perhaps some future version of Sun C++ will work with
189 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
190#if defined __SUNPRO_CC && !defined __RESTRICT
191# define _Restrict
192# define __restrict__
193#endif