• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* 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/* Symbol visibility prefix */
19#undef EXPORT
20
21/* Debug fixed-point implementation */
22#undef FIXED_DEBUG
23
24/* Compile as fixed-point */
25#undef FIXED_POINT
26
27/* Compile as floating-point */
28#undef FLOATING_POINT
29
30/* Define to 1 if you have the <dlfcn.h> header file. */
31#undef HAVE_DLFCN_H
32
33/* Define to 1 if you have the <inttypes.h> header file. */
34#undef HAVE_INTTYPES_H
35
36/* Define to 1 if you have the <stdint.h> header file. */
37#undef HAVE_STDINT_H
38
39/* Define to 1 if you have the <stdio.h> header file. */
40#undef HAVE_STDIO_H
41
42/* Define to 1 if you have the <stdlib.h> header file. */
43#undef HAVE_STDLIB_H
44
45/* Define to 1 if you have the <strings.h> header file. */
46#undef HAVE_STRINGS_H
47
48/* Define to 1 if you have the <string.h> header file. */
49#undef HAVE_STRING_H
50
51/* Define to 1 if you have the <sys/audioio.h> header file. */
52#undef HAVE_SYS_AUDIOIO_H
53
54/* Define to 1 if you have the <sys/soundcard.h> header file. */
55#undef HAVE_SYS_SOUNDCARD_H
56
57/* Define to 1 if you have the <sys/stat.h> header file. */
58#undef HAVE_SYS_STAT_H
59
60/* Define to 1 if you have the <sys/types.h> header file. */
61#undef HAVE_SYS_TYPES_H
62
63/* Define to 1 if you have the <unistd.h> header file. */
64#undef HAVE_UNISTD_H
65
66/* Define to the sub-directory where libtool stores uninstalled libraries. */
67#undef LT_OBJDIR
68
69/* Define to the address where bug reports for this package should be sent. */
70#undef PACKAGE_BUGREPORT
71
72/* Define to the full name of this package. */
73#undef PACKAGE_NAME
74
75/* Define to the full name and version of this package. */
76#undef PACKAGE_STRING
77
78/* Define to the one symbol short name of this package. */
79#undef PACKAGE_TARNAME
80
81/* Define to the home page for this package. */
82#undef PACKAGE_URL
83
84/* Define to the version of this package. */
85#undef PACKAGE_VERSION
86
87/* Resample with full SINC table (no interpolation) */
88#undef RESAMPLE_FULL_SINC_TABLE
89
90/* The size of `int', as computed by sizeof. */
91#undef SIZEOF_INT
92
93/* The size of `int16_t', as computed by sizeof. */
94#undef SIZEOF_INT16_T
95
96/* The size of `int32_t', as computed by sizeof. */
97#undef SIZEOF_INT32_T
98
99/* The size of `long', as computed by sizeof. */
100#undef SIZEOF_LONG
101
102/* The size of `short', as computed by sizeof. */
103#undef SIZEOF_SHORT
104
105/* The size of `uint16_t', as computed by sizeof. */
106#undef SIZEOF_UINT16_T
107
108/* The size of `uint32_t', as computed by sizeof. */
109#undef SIZEOF_UINT32_T
110
111/* The size of `u_int16_t', as computed by sizeof. */
112#undef SIZEOF_U_INT16_T
113
114/* The size of `u_int32_t', as computed by sizeof. */
115#undef SIZEOF_U_INT32_T
116
117/* Define to 1 if all of the C90 standard headers exist (not just the ones
118   required in a freestanding environment). This macro is provided for
119   backward compatibility; new code need not use it. */
120#undef STDC_HEADERS
121
122/* Enable support for TI C55X DSP */
123#undef TI_C55X
124
125/* Use FFTW3 for FFT */
126#undef USE_GPL_FFTW3
127
128/* Use Intel Math Kernel Library for FFT */
129#undef USE_INTEL_MKL
130
131/* Use KISS Fast Fourier Transform */
132#undef USE_KISS_FFT
133
134/* Enable NEON support */
135#undef USE_NEON
136
137/* Use FFT from OggVorbis */
138#undef USE_SMALLFT
139
140/* Enable SSE support */
141#undef USE_SSE
142
143/* Enable SSE2 support */
144#undef USE_SSE2
145
146/* Use C99 variable-size arrays */
147#undef VAR_ARRAYS
148
149/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
150   significant byte first (like Motorola and SPARC, unlike Intel). */
151#if defined AC_APPLE_UNIVERSAL_BUILD
152# if defined __BIG_ENDIAN__
153#  define WORDS_BIGENDIAN 1
154# endif
155#else
156# ifndef WORDS_BIGENDIAN
157#  undef WORDS_BIGENDIAN
158# endif
159#endif
160
161/* Define to empty if `const' does not conform to ANSI C. */
162#undef const
163
164/* Define to `__inline__' or `__inline' if that's what the C compiler
165   calls it, or to nothing if 'inline' is not supported under any name.  */
166#ifndef __cplusplus
167#undef inline
168#endif
169
170/* Define to the equivalent of the C99 'restrict' keyword, or to
171   nothing if this is not supported.  Do not define if restrict is
172   supported only directly.  */
173#undef restrict
174/* Work around a bug in older versions of Sun C++, which did not
175   #define __restrict__ or support _Restrict or __restrict__
176   even though the corresponding Sun C compiler ended up with
177   "#define restrict _Restrict" or "#define restrict __restrict__"
178   in the previous line.  This workaround can be removed once
179   we assume Oracle Developer Studio 12.5 (2016) or later.  */
180#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
181# define _Restrict
182# define __restrict__
183#endif
184