blob: 36f4fb736ccd8ae9124f602891afb7dec26d89fd [file] [log] [blame]
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +00001/* config.h.in. Generated from configure.ac by autoheader. */
2
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +00003/* Custom modes */
4#undef CUSTOM_MODES
5
tlegrand@google.com3c3902f2013-12-09 08:35:25 +00006/* Do not build the float API */
7#undef DISABLE_FLOAT_API
8
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +00009/* Assertions */
10#undef ENABLE_ASSERTIONS
11
12/* Debug fixed-point implementation */
13#undef FIXED_DEBUG
14
15/* Compile as fixed-point (for machines without a fast enough FPU) */
16#undef FIXED_POINT
17
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +000018/* Float approximations */
19#undef FLOAT_APPROX
20
21/* Fuzzing */
22#undef FUZZING
23
24/* Define to 1 if you have the <alloca.h> header file. */
25#undef HAVE_ALLOCA_H
26
27/* Define to 1 if you have the <dlfcn.h> header file. */
28#undef HAVE_DLFCN_H
29
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +000030/* Define to 1 if you have the <inttypes.h> header file. */
31#undef HAVE_INTTYPES_H
32
33/* Define to 1 if you have the `lrint' function. */
34#undef HAVE_LRINT
35
36/* Define to 1 if you have the `lrintf' function. */
37#undef HAVE_LRINTF
38
39/* Define to 1 if you have the <memory.h> header file. */
40#undef HAVE_MEMORY_H
41
42/* Define to 1 if you have the <stdint.h> header file. */
43#undef HAVE_STDINT_H
44
45/* Define to 1 if you have the <stdlib.h> header file. */
46#undef HAVE_STDLIB_H
47
48/* Define to 1 if you have the <strings.h> header file. */
49#undef HAVE_STRINGS_H
50
51/* Define to 1 if you have the <string.h> header file. */
52#undef HAVE_STRING_H
53
54/* Define to 1 if you have the <sys/stat.h> header file. */
55#undef HAVE_SYS_STAT_H
56
57/* Define to 1 if you have the <sys/types.h> header file. */
58#undef HAVE_SYS_TYPES_H
59
60/* Define to 1 if you have the <unistd.h> header file. */
61#undef HAVE_UNISTD_H
62
63/* Define to 1 if you have the `__malloc_hook' function. */
64#undef HAVE___MALLOC_HOOK
65
66/* Define to the sub-directory in which libtool stores uninstalled libraries.
67 */
68#undef LT_OBJDIR
69
70/* Define to 1 if your C compiler doesn't accept -c and -o together. */
71#undef NO_MINUS_C_MINUS_O
72
tlegrand@google.com3c3902f2013-12-09 08:35:25 +000073/* Make use of ARM asm optimization */
74#undef OPUS_ARM_ASM
75
76/* Use generic ARMv4 inline asm optimizations */
77#undef OPUS_ARM_INLINE_ASM
78
79/* Use ARMv5E inline asm optimizations */
80#undef OPUS_ARM_INLINE_EDSP
81
82/* Use ARMv6 inline asm optimizations */
83#undef OPUS_ARM_INLINE_MEDIA
84
85/* Use ARM NEON inline asm optimizations */
86#undef OPUS_ARM_INLINE_NEON
87
88/* Define if assembler supports EDSP instructions */
89#undef OPUS_ARM_MAY_HAVE_EDSP
90
91/* Define if assembler supports ARMv6 media instructions */
92#undef OPUS_ARM_MAY_HAVE_MEDIA
93
94/* Define if compiler supports NEON instructions */
95#undef OPUS_ARM_MAY_HAVE_NEON
96
97/* Define if binary requires EDSP instruction support */
98#undef OPUS_ARM_PRESUME_EDSP
99
100/* Define if binary requires ARMv6 media instruction support */
101#undef OPUS_ARM_PRESUME_MEDIA
102
103/* Define if binary requires NEON instruction support */
104#undef OPUS_ARM_PRESUME_NEON
105
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +0000106/* This is a build of OPUS */
107#undef OPUS_BUILD
108
tlegrand@google.com3c3902f2013-12-09 08:35:25 +0000109/* Use run-time CPU capabilities detection */
110#undef OPUS_HAVE_RTCD
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +0000111
112/* Define to the address where bug reports for this package should be sent. */
113#undef PACKAGE_BUGREPORT
114
115/* Define to the full name of this package. */
116#undef PACKAGE_NAME
117
118/* Define to the full name and version of this package. */
119#undef PACKAGE_STRING
120
121/* Define to the one symbol short name of this package. */
122#undef PACKAGE_TARNAME
123
124/* Define to the home page for this package. */
125#undef PACKAGE_URL
126
127/* Define to the version of this package. */
128#undef PACKAGE_VERSION
129
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +0000130/* Define to 1 if you have the ANSI C header files. */
131#undef STDC_HEADERS
132
133/* Make use of alloca */
134#undef USE_ALLOCA
135
136/* Use C99 variable-size arrays */
137#undef VAR_ARRAYS
138
sergeyu@chromium.org885f2ff2012-10-17 22:31:52 +0000139/* Define to empty if `const' does not conform to ANSI C. */
140#undef const
141
142/* Define to `__inline__' or `__inline' if that's what the C compiler
143 calls it, or to nothing if 'inline' is not supported under any name. */
144#ifndef __cplusplus
145#undef inline
146#endif
147
148/* Define to the equivalent of the C99 'restrict' keyword, or to
149 nothing if this is not supported. Do not define if restrict is
150 supported directly. */
151#undef restrict
152/* Work around a bug in Sun C++: it does not support _Restrict or
153 __restrict__, even though the corresponding Sun C compiler ends up with
154 "#define restrict _Restrict" or "#define restrict __restrict__" in the
155 previous line. Perhaps some future version of Sun C++ will work with
156 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
157#if defined __SUNPRO_CC && !defined __RESTRICT
158# define _Restrict
159# define __restrict__
160#endif